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


PHP Html::image方法代碼示例

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


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

示例1: _config_cells

 public static function _config_cells($columns_info = array())
 {
     foreach ($columns_info as $c => $info) {
         if (!empty($info['function'])) {
             $function = !empty($info['function']) ? $info['function'] : '';
             if (is_array($info['function'])) {
                 foreach ($info['function'] as $k => $fn) {
                     self::$columns_info[$c]['function'][$k] = $fn;
                 }
             } else {
                 self::$columns_info[$c]['function'] = $function;
             }
         }
         if (!empty($info['html'])) {
             $html = !empty($info['html']) ? $info['html'] : '';
             if (is_array($info['html'])) {
                 foreach ($info['html'] as $k => $htm) {
                     self::$columns_info[$c]['html'][$k] = $htm;
                 }
             } else {
                 self::$columns_info[$c]['html'] = $html;
             }
         }
         if (!empty($info['image'])) {
             $image_params = !empty($info['image_params']) ? $info['image_params'] : array();
             $src = !empty($info['image']) ? $info['image'] : '';
             if (is_array($info['image'])) {
                 foreach ($info['image'] as $k => $img) {
                     self::$columns_info[$c]['image'][$k] = \GCore\Helpers\Html::image($img, $image_params);
                 }
             } else {
                 self::$columns_info[$c]['image'] = \GCore\Helpers\Html::image($src, $image_params);
             }
         }
         if (!empty($info['link'])) {
             $path = !empty($info['link']) ? $info['link'] : '';
             if (is_array($info['link'])) {
                 foreach ($info['link'] as $k => $link) {
                     self::$columns_info[$c]['link'][$k] = r_($link);
                 }
             } else {
                 self::$columns_info[$c]['link'] = r_($path);
             }
         }
         if (!empty($info['field'])) {
             $field = !empty($info['field']) ? $info['field'] : '';
             if (is_array($info['field'])) {
                 foreach ($info['field'] as $k => $fld) {
                     self::$columns_info[$c]['field'][$k] = $fld;
                 }
             } else {
                 self::$columns_info[$c]['field'] = $field;
             }
         }
         self::$columns_info[$c]['style'] = !empty($info['style']) ? $info['style'] : '';
         self::$columns_info[$c]['class'] = !empty($info['class']) ? (array) $info['class'] : '';
     }
 }
開發者ID:ejailesb,項目名稱:repo_empr,代碼行數:58,代碼來源:data_presenter.php


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