当前位置: 首页>>代码示例>>PHP>>正文


PHP HtmlHelper::createHtmlForNoneImage方法代码示例

本文整理汇总了PHP中HtmlHelper::createHtmlForNoneImage方法的典型用法代码示例。如果您正苦于以下问题:PHP HtmlHelper::createHtmlForNoneImage方法的具体用法?PHP HtmlHelper::createHtmlForNoneImage怎么用?PHP HtmlHelper::createHtmlForNoneImage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在HtmlHelper的用法示例。


在下文中一共展示了HtmlHelper::createHtmlForNoneImage方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: processImages

 private function processImages(&$row, PluginConfiguration $config, &$matchesInIntro, &$matchesInText, $screenres, $showIntro)
 {
     $introCount = count($matchesInIntro);
     $count = count($matchesInText);
     jimport('joomla.application.component.model');
     JModelLegacy::addIncludePath(JPATH_ADMINISTRATOR . '/components/com_mosimage/models');
     JTable::addIncludePath(JPATH_ADMINISTRATOR . '/components/com_mosimage/tables');
     $model = JModelLegacy::getInstance('Options', 'MosimageModel');
     $rowImage = $model->getItem($row->id);
     $jsonObjectsList = $this->convertJsonToObjectArray($rowImage->imageslist);
     $rowImageCount = count($jsonObjectsList);
     $introImages = array();
     for ($i = 0, $m = 0; $i < $introCount; $i++, $m++) {
         $param = $this->getMosimageParameter($matchesInIntro[$m]);
         if ($i < $rowImageCount) {
             $introImages[] = HtmlHelper::createImageAndBuildHtml($jsonObjectsList[$i], $config, $screenres, $param);
         } else {
             $intoImages[] = HtmlHelper::createHtmlForNoneIntroImage($i);
         }
     }
     if ($this->isTextContainIntroText($row) == true) {
         $start = $introCount;
     } else {
         $start = 0;
     }
     if (empty($row->fulltext) || $showIntro == true) {
         $start = 0;
     }
     $images = array();
     for ($i = $start, $m = 0; $m < $count; $i++, $m++) {
         $param = $this->getMosimageParameter($matchesInText[$m]);
         if ($i < $rowImageCount && $rowImageCount > 0) {
             $images[] = HtmlHelper::createImageAndBuildHtml($jsonObjectsList[$i], $config, $screenres, $param);
         } else {
             $images[] = HtmlHelper::createHtmlForNoneImage($i);
         }
     }
     $result = new stdClass();
     $result->introImages = $introImages;
     $result->images = $images;
     return $result;
 }
开发者ID:harryklein,项目名称:pkg_mosimage,代码行数:42,代码来源:mosimage.php


注:本文中的HtmlHelper::createHtmlForNoneImage方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。