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


PHP ContentElement::findClass方法代碼示例

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


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

示例1: parseTemplate

 /**
  * Add the html attribute to allowed elements
  *
  * @param \Template $objTemplate
  */
 public function parseTemplate($objTemplate)
 {
     if (!$objTemplate instanceof \FrontendTemplate || !$objTemplate->allowAjaxReload) {
         return;
     }
     // Determine whether we have a module or a content element by the vars given at this point
     if (\Module::findClass($objTemplate->type)) {
         $strType = 'mod';
     } elseif (\ContentElement::findClass($objTemplate->type)) {
         $strType = 'ce';
     } else {
         return;
     }
     // Some elements use the auto_item which we need to pass
     $strAutoItem = Input::getAutoItem('auto_item');
     // cssID is parsed in all common templates
     // Use cssID for our attribute
     $objTemplate->cssID .= sprintf(' data-ajax-reload-element="%s::%u"%s%s', $strType, $objTemplate->id, strlen($strAutoItem) ? sprintf(' data-ajax-reload-auto-item="%s"', $strAutoItem) : '', $objTemplate->ajaxReloadFormSubmit ? ' data-ajax-reload-form-submit=""' : '');
 }
開發者ID:richardhj,項目名稱:contao-ajax_reload_element,代碼行數:24,代碼來源:AjaxReloadElement.php

示例2: findContentElement

 /**
  * Find a content element in the TL_CTE array and return the class name
  *
  * @param string $strName The content element name
  *
  * @return string The class name
  *
  * @deprecated Use ContentElement::findClass() instead
  */
 public static function findContentElement($strName)
 {
     return \ContentElement::findClass($strName);
 }
開發者ID:StephenGWills,項目名稱:sample-contao-app,代碼行數:13,代碼來源:Controller.php

示例3: getContentElementAjax

 /**
  * Generate a content element and return it as string
  *
  * @param mixed  $intId     A content element ID or a Model object
  * @param string $strColumn The column the element is in
  *
  * @return string The content element HTML markup
  */
 protected static function getContentElementAjax($intId, $strColumn = 'main')
 {
     if (is_object($intId)) {
         $objRow = $intId;
     } else {
         if (!strlen($intId) || $intId < 1) {
             return '';
         }
         $objRow = \ContentModel::findByPk($intId);
         if ($objRow === null) {
             return '';
         }
     }
     // Check the visibility (see #6311)
     if (!static::isVisibleElement($objRow)) {
         return '';
     }
     $strClass = \ContentElement::findClass($objRow->type);
     // Return if the class does not exist
     if (!class_exists($strClass)) {
         \System::log('Content element class "' . $strClass . '" (content element "' . $objRow->type . '") does not exist', __METHOD__, TL_ERROR);
         return '';
     }
     $objRow->typePrefix = 'ce_';
     $objElement = new $strClass($objRow, $strColumn);
     $strBuffer = AjaxInput::get('g') == '1' ? $objElement->generate() : $objElement->generateAjax();
     // HOOK: add custom logic
     if (isset($GLOBALS['TL_HOOKS']['getContentElement']) && is_array($GLOBALS['TL_HOOKS']['getContentElement'])) {
         foreach ($GLOBALS['TL_HOOKS']['getContentElement'] as $callback) {
             $strBuffer = static::importStatic($callback[0])->{$callback}[1]($objRow, $strBuffer, $objElement);
         }
     }
     return $strBuffer;
 }
開發者ID:rhymedigital,項目名稱:contao_rhyme_ajax,代碼行數:42,代碼來源:HandleLegacy.php


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