BxDolTwigModule::__construct PHP Method

__construct() public method

public __construct ( &$aModule )
    function __construct(&$aModule)
    {
        parent::__construct($aModule);
        $this->_iProfileId = isLogged() ? getLoggedId() : 0;
    }

Usage Example

コード例 #1
0
 function __construct(&$aModule)
 {
     parent::__construct($aModule);
     $this->_sFilterName = 'bx_groups_filter';
     $this->_sPrefix = 'bx_groups';
     bx_import('Privacy', $aModule);
     $this->_oPrivacy = new BxGroupsPrivacy($this);
     $GLOBALS['oBxGroupsModule'] =& $this;
 }
All Usage Examples Of BxDolTwigModule::__construct