Advertisement
Guest User

Container

a guest
May 26th, 2015
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.85 KB | None | 0 0
  1. <?php
  2. class Ext_Events_Container extends Ext_Events_Component
  3. {
  4.     static protected $_addOptions = array(
  5.         'container' => 'Ext.container.Container',
  6.         'component' => 'Ext.Component',
  7.         'index' => 'Number',
  8.         'eOpts' => 'Oject'
  9.     );
  10.  
  11.     static protected $_removeOptions = array(
  12.         'container' => 'Ext.container.Container',
  13.         'component' => 'Ext.Component',
  14.         'eOpts' => 'Object'
  15.     );
  16.  
  17.     public $add;
  18.     public $afterlayout = array(
  19.         'container' => 'Ext.container.Container',
  20.         'layout', 'Ext.layout.container.Container',
  21.         'eOpts' => 'Object'
  22.     );
  23.     public $beforeadd;
  24.     public $beforeremove;
  25.  
  26.     public $remove;
  27.  
  28.     public function _initConfig()
  29.     {
  30.         parent::_initConfig();
  31.  
  32.         $this->add = static::$_addOptions;
  33.         $this->beforeadd = static::$_addOptions;
  34.         $this->remove = static::$_removeOptions;
  35.         $this->beforeremove = static::$_removeOptions;
  36.     }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement