Contao\Frontend::__construct PHP Метод

__construct() публичный Метод

Make the constructor public, so pages can be instantiated (see #6182)
public __construct ( )
    public function __construct()
    {
        parent::__construct();
        $this->import('Database');
    }

Usage Example

Пример #1
0
 /**
  * Initialize the object (do not remove)
  */
 public function __construct()
 {
     parent::__construct();
     // See #4099
     define('BE_USER_LOGGED_IN', false);
     define('FE_USER_LOGGED_IN', false);
 }
All Usage Examples Of Contao\Frontend::__construct