当前位置: 首页>>代码示例>>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;未经允许,请勿转载。