コード例 #1
0
 /**
  * Constructor
  *
  * Initializes the TXmlTransform object and ensure that the XSL extension is available
  * @throws TConfigurationException If XSL extension is not available
  */
 public function __construct()
 {
     if (!class_exists('XSLTProcessor', false)) {
         throw new TConfigurationException('xmltransform_xslextension_required');
     }
     parent::__construct();
 }
コード例 #2
0
ファイル: TFlushOutput.php プロジェクト: tejdeeps/tejcs.com
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct();
     $this->EnableViewState = false;
 }
コード例 #3
0
ファイル: TJuiDialog.php プロジェクト: ullasnaidu/epro
 /**
  * Creates a new callback control, sets the adapter to
  * TActiveControlAdapter. If you override this class, be sure to set the
  * adapter appropriately by, for example, by calling this constructor.
  */
 public function __construct()
 {
     parent::__construct();
     $this->setAdapter(new TActiveControlAdapter($this));
 }
コード例 #4
0
 /**
  * Constructor.
  * Sets TagName property to 'input'.
  */
 public function __construct()
 {
     parent::__construct();
     $this->setTagName('input');
 }
コード例 #5
0
 /**
  * Constructor, initiates the root to itself.
  * Use pradoGetApplication()->loadPage() to create a page instead of using the new operator.
  */
 function __construct()
 {
     $this->setRoot($this);
     $this->forms = new ArrayObject();
     parent::__construct();
 }
コード例 #6
0
 /**
  * Constructor.
  * Initializes the type to 'Item'.
  */
 public function __construct()
 {
     $this->type = self::TYPE_ITEM;
     parent::__construct();
 }