Grw::__construct PHP Method

__construct() public method

public __construct ( )
    function __construct()
    {
        parent::__construct();
        $this->__initial('Grw');
        $this->PIC = "http://www.grw.name/upload/";
        $this->STATICS = "http://www.grw.name/statics/";
        //ini_set('memory_limit', '-1');
        $this->userid = $_SESSION['Fei_Userid'];
        $this->logs = FeiClass('FeiLog');
        if ($this->__is_ie()) {
            $this->isie = TRUE;
        } else {
            $this->isie = FALSE;
        }
    }

Usage Example

Example #1
0
 function __construct()
 {
     parent::__construct();
     $this->__initial('timegoal');
     $todo = FeiClass('model_todo');
     //Total todos
     $this->todos = array('todo' => $todo->statics(0), 'maybe' => $todo->statics(3));
 }
All Usage Examples Of Grw::__construct