__construct() public method

Constructor
public __construct ( )
 /**
  * Constructor.
  * @param $assocType int
  * @param $assocId int
  * @param $requestArgs array Grid request arguments.
  */
 function __construct($assocType, $assocId, $requestArgs)
 {
     parent::__construct();
     $this->_assocType = $assocType;
     $this->_assocId = $assocId;
     $this->_requestArgs = $requestArgs;
 }
 /**
  * Constructor
  */
 function __construct()
 {
     parent::__construct();
 }
Exemplo n.º 3
0
 /**
  * Constructor
  */
 function __construct()
 {
     parent::__construct();
     $this->dateFormatShort = Config::getVar('general', 'date_format_short');
 }
Exemplo n.º 4
0
 /**
  * Constructor
  */
 function __construct($translate = false)
 {
     parent::__construct();
 }
 /**
  * Constructor
  * @param $context Context
  */
 function __construct($context)
 {
     $this->_context = $context;
     parent::__construct();
 }
 /**
  * Constructor
  * @param $dataProvider DataProvider The object to wrap
  * @param $format string See strftime
  */
 function __construct($dataProvider, $format)
 {
     parent::__construct();
     $this->_dataProvider = $dataProvider;
     $this->_format = $format;
 }
 /**
  * Constructor
  */
 function __construct($translate = false)
 {
     parent::__construct();
     $this->_translate = $translate;
 }