當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ContentElement::__construct方法代碼示例

本文整理匯總了PHP中ContentElement::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP ContentElement::__construct方法的具體用法?PHP ContentElement::__construct怎麽用?PHP ContentElement::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ContentElement的用法示例。


在下文中一共展示了ContentElement::__construct方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

 /**
  * Initialize the object
  * @param object
  * @param string
  */
 public function __construct($objElement, $strColumn = 'main')
 {
     parent::__construct($objElement, $strColumn);
     if ($this->customTpl != '') {
         $this->strTemplate = $this->customTpl;
     }
 }
開發者ID:davidenke,項目名稱:newsletter_content,代碼行數:12,代碼來源:ContentBoundaries.php

示例2: __construct

 /**
  * @param        $objElement
  * @param string $strColumn
  */
 public function __construct($objElement, $strColumn = 'main')
 {
     parent::__construct($objElement, $strColumn);
     $this->arrData = new Attributes($this->arrData);
     $this->arrData->registerNamespaceAttributes($this->arrBootstrapAttributes);
     $this->cssDefinitioin = $this->cssID;
 }
開發者ID:netzmacht,項目名稱:contao-bootstrap,代碼行數:11,代碼來源:BootstrapAbstract.php

示例3: __construct

 public function __construct($rowDefintion)
 {
     parent::__construct($rowDefintion);
     foreach ($rowDefintion['data'] as $cellDefintion) {
         $this->data[] = new Cell($cellDefintion);
     }
 }
開發者ID:wasabi-cms,項目名稱:cms,代碼行數:7,代碼來源:Row.php

示例4: __construct

 /**
  * {@inheritDoc}
  */
 public function __construct($objElement, $strColumn = 'main')
 {
     parent::__construct($objElement, $strColumn);
     try {
         /** @var Registry $registry */
         $registry = $this->getServiceContainer()->getService('content-nodes.registry');
         $this->node = $registry->getNode($this->type);
     } catch (\Exception $e) {
         $this->log(sprintf($e->getMessage(), $this->type), __METHOD__, TL_ERROR);
     }
 }
開發者ID:netzmacht,項目名稱:contao-content-node,代碼行數:14,代碼來源:NodeElement.php

示例5: __construct

 /**
  * Initialize the content element
  * @param object
  */
 public function __construct(Database_Result $objElement)
 {
     parent::__construct($objElement);
     if (TL_MODE == 'FE') {
         $this->import('Isotope');
         if (FE_USER_LOGGED_IN === true) {
             $this->import('FrontendUser', 'User');
         }
         // Load Isotope javascript and css
         $GLOBALS['TL_JAVASCRIPT'][] = 'system/modules/isotope/html/isotope.js';
         $GLOBALS['TL_CSS'][] = 'system/modules/isotope/html/isotope.css';
     }
 }
開發者ID:rburch,項目名稱:core-1,代碼行數:17,代碼來源:ContentIsotope.php

示例6: __construct

 /**
  * Initialize the object
  *
  * @param $objElement
  */
 public function __construct($objElement)
 {
     parent::__construct($objElement);
 }
開發者ID:menatwork,項目名稱:semantic_html5,代碼行數:9,代碼來源:SemanticHTML5.php


注:本文中的ContentElement::__construct方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。