コード例 #1
0
ファイル: PropertyRecord.php プロジェクト: pablius/oob-n1
 public function __construct($name, $value)
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.grid.PropertyRecord", null);
     $this->_name = $name;
     $this->_value = $value;
 }
コード例 #2
0
ファイル: Observable.php プロジェクト: pablius/oob-n1
 protected function __construct()
 {
     parent::__construct();
     $validProps = array("listeners");
     $this->addValidConfigProperties($validProps);
     $this->_listeners = new PhpExt_ListenerCollection();
     $this->_extConfigProperties["listeners"] = $this->_listeners;
 }
コード例 #3
0
ファイル: Template.php プロジェクト: pablius/oob-n1
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.Template", null);
     $args = func_get_args();
     if (count($args) > 0 && is_array($args[0])) {
         $this->_html = $args[0];
     } else {
         $this->_html = $args;
     }
 }
コード例 #4
0
ファイル: ConfigObject.php プロジェクト: beodob/php-ext
 public function __construct($options = array())
 {
     parent::__construct();
     $this->setExtClassInfo("", null);
     if (count($options) > 0) {
         $this->addValidConfigProperties(array_keys($options));
         foreach ($options as $name => $value) {
             $this->setExtConfigProperty($name, $value);
         }
     }
 }
コード例 #5
0
ファイル: MessageBox.php プロジェクト: pablius/oob-n1
 protected function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.Msg");
 }
コード例 #6
0
ファイル: RootTreeNodeUI.php プロジェクト: pablius/oob-n1
 public function __construct()
 {
     parent::__construct();
     //$this->setExtClassInfo("Ext.tree.AbstractSelectionModel", null);
 }
コード例 #7
0
ファイル: DataReader.php プロジェクト: beodob/php-ext
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.data.DataReader", null);
     $this->_fields = new PhpExt_Data_FieldConfigObjectCollection();
 }
コード例 #8
0
ファイル: Action.php プロジェクト: pablius/oob-n1
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.form.Action");
     $validProps = array("failure", "method", "params", "scope", "success", "url", "waitMsg", "waitTitle", "failureType", "result");
     $this->addValidConfigProperties($validProps);
 }
コード例 #9
0
ファイル: Shadow.php プロジェクト: beodob/php-ext
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.Shadow");
 }
コード例 #10
0
ファイル: Item.php プロジェクト: pablius/oob-n1
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.Toolbar.Item", "tbitem");
 }
コード例 #11
0
ファイル: ContainerLayout.php プロジェクト: pablius/oob-n1
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.layout.ContainerLayout", null);
     $validProps = array("extraCls", "renderHidden");
     $this->addValidConfigProperties($validProps);
     $this->addValidLayoutDataClassName("PhpExt_Layout_ContainerLayoutData");
 }
コード例 #12
0
ファイル: Record.php プロジェクト: beodob/php-ext
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.data.Record", null);
     $this->Fields = new PhpExt_ObjectCollection();
 }
コード例 #13
0
ファイル: FitToParent.php プロジェクト: pablius/oob-n1
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.ux.plugins.FitToParent", null);
 }
コード例 #14
0
ファイル: RowNumberer.php プロジェクト: pablius/oob-n1
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.grid.RowNumberer", null);
 }