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


PHP ModuleAdminController::renderOptions方法代码示例

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


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

示例1: initOptions

 public function initOptions()
 {
     $this->optionTitle = $this->l('Settings');
     $blogCategories = SimpleBlogCategory::getCategories($this->context->language->id);
     $simpleBlogCategories = array();
     $simpleBlogCategories[0] = $this->l('All categories');
     $simpleBlogCategories[9999] = $this->l('Featured only');
     foreach ($blogCategories as $key => $category) {
         $simpleBlogCategories[$category['id']] = $category['name'];
     }
     $recentPosts = array();
     if (Module::isInstalled('ph_recentposts')) {
         $recentPosts = array('recent_posts' => array('submit' => array('title' => $this->l('Update'), 'class' => 'button'), 'title' => $this->l('Recent Posts widget settings'), 'image' => '../img/t/AdminOrderPreferences.gif', 'fields' => array('PH_RECENTPOSTS_LAYOUT' => array('title' => $this->l('Recent Posts layout:'), 'show' => true, 'required' => true, 'type' => 'radio', 'choices' => array('full' => $this->l('Full width with large images'), 'grid' => $this->l('Grid'))), 'PH_RECENTPOSTS_GRID_COLUMNS' => array('title' => $this->l('Grid columns:'), 'cast' => 'intval', 'desc' => $this->l('Working only with "Recent Posts layout:" setup to "Grid"'), 'show' => true, 'required' => true, 'type' => 'radio', 'choices' => array('2' => $this->l('2 columns'), '3' => $this->l('3 columns'), '4' => $this->l('4 columns'))), 'PH_RECENTPOSTS_NB' => array('title' => $this->l('Number of displayed Recent Posts'), 'cast' => 'intval', 'desc' => $this->l('Default: 4'), 'type' => 'text', 'required' => true, 'validation' => 'isUnsignedId'), 'PH_RECENTPOSTS_CAT' => array('title' => $this->l('Category:'), 'cast' => 'intval', 'desc' => $this->l('If you not select any category then Recent Posts will displayed posts from all categories'), 'show' => true, 'required' => true, 'type' => 'radio', 'choices' => $simpleBlogCategories))));
     }
     $relatedPosts = array();
     if (Module::isInstalled('ph_relatedposts')) {
         $relatedPosts = array('related_posts' => array('submit' => array('title' => $this->l('Update'), 'class' => 'button'), 'title' => $this->l('Related Posts widget settings'), 'image' => '../img/t/AdminOrderPreferences.gif', 'fields' => array('PH_RELATEDPOSTS_GRID_COLUMNS' => array('title' => $this->l('Grid columns:'), 'cast' => 'intval', 'desc' => $this->l('Working only with "Recent Posts layout:" setup to "Grid"'), 'show' => true, 'required' => true, 'type' => 'radio', 'choices' => array('2' => $this->l('2 columns'), '3' => $this->l('3 columns'), '4' => $this->l('4 columns'))))));
     }
     $alert_class = $this->is_16 === true ? 'alert alert-info' : 'info';
     $standard_options = array('general' => array('title' => $this->l('PrestaHome SimpleBlog Settings'), 'image' => '../img/t/AdminOrderPreferences.gif', 'info' => '<a class="button btn btn-default" href="index.php?controller=AdminSimpleBlogSettings&token=' . Tools::getValue('token') . '&regenerateThumbnails=1" class="bold"><i class="process-icon-cogs"></i>' . $this->l('Regenerate thumbnails') . '</a><br /><br />', 'fields' => array('PH_BLOG_POSTS_PER_PAGE' => array('title' => $this->l('Posts per page:'), 'cast' => 'intval', 'desc' => $this->l('Number of blog posts displayed per page. Default is 10.'), 'type' => 'text', 'required' => true, 'validation' => 'isUnsignedId'), 'PH_BLOG_SLUG' => array('title' => $this->l('Blog main URL (by default: blog)'), 'validation' => 'isGenericName', 'required' => true, 'type' => 'text', 'size' => 40), 'PH_BLOG_MAIN_TITLE' => array('title' => $this->l('Blog title:'), 'validation' => 'isGenericName', 'type' => 'textLang', 'size' => 40), 'PH_BLOG_DATEFORMAT' => array('title' => $this->l('Blog default date format:'), 'desc' => $this->l('More details: http://php.net/manual/pl/function.date.php'), 'validation' => 'isGenericName', 'type' => 'text', 'size' => 40), 'PH_CATEGORY_SORTBY' => array('title' => $this->l('Sort categories by:'), 'desc' => $this->l('Select which method use to sort categories in SimpleBlog Categories Block'), 'show' => true, 'required' => true, 'type' => 'radio', 'choices' => array('position' => $this->l('Position (1-9)'), 'name' => $this->l('Name (A-Z)'), 'id' => $this->l('ID (1-9)'))), 'PH_BLOG_FB_INIT' => array('title' => $this->l('Init Facebook?'), 'validation' => 'isBool', 'cast' => 'intval', 'desc' => $this->l('If you already use some Facebook widgets in your theme please select option to "No". If you select "Yes" then SimpleBlog will add facebook connect script on single post page.'), 'required' => true, 'type' => 'bool')), 'submit' => array('title' => $this->l('Update'), 'class' => 'button')), 'layout' => array('submit' => array('title' => $this->l('Update'), 'class' => 'button'), 'title' => $this->l('Appearance Settings - General'), 'image' => '../img/t/AdminOrderPreferences.gif', 'fields' => array('PH_BLOG_LAYOUT' => array('title' => $this->l('Main layout:'), 'show' => true, 'required' => true, 'type' => 'radio', 'choices' => array('default' => $this->l('3 columns, enabled left column and right column'), 'left_sidebar' => $this->l('2 columns, enabled left column'), 'right_sidebar' => $this->l('2 columns, enabled right column'), 'full_width' => $this->l('Full width - Left and right column will be removed'))), 'PH_BLOG_DISPLAY_BREADCRUMBS' => array('title' => $this->l('Display breadcrumbs in center-column?'), 'validation' => 'isBool', 'cast' => 'intval', 'desc' => $this->l('Sometimes you want to remove breadcrumbs from center-column'), 'required' => true, 'type' => 'bool'), 'PH_BLOG_LIST_LAYOUT' => array('title' => $this->l('Posts list layout:'), 'show' => true, 'required' => true, 'type' => 'radio', 'choices' => array('full' => $this->l('Full width with large images'), 'grid' => $this->l('Grid'))), 'PH_BLOG_GRID_COLUMNS' => array('title' => $this->l('Grid columns:'), 'cast' => 'intval', 'desc' => $this->l('Working only with "Posts list layout" setup to "Grid"'), 'show' => true, 'required' => true, 'type' => 'radio', 'choices' => array('2' => $this->l('2 columns'), '3' => $this->l('3 columns'), '4' => $this->l('4 columns'))), 'PH_BLOG_CSS' => array('title' => $this->l('Custom CSS'), 'show' => true, 'required' => false, 'type' => 'textarea', 'cols' => '70', 'rows' => '10'))), 'single_post' => array('submit' => array('title' => $this->l('Update'), 'class' => 'button'), 'title' => $this->l('Appearance Settings - Single post'), 'image' => '../img/t/AdminOrderPreferences.gif', 'fields' => array('PH_BLOG_DISPLAY_LIKES' => array('title' => $this->l('Display "likes"?'), 'validation' => 'isBool', 'cast' => 'intval', 'required' => true, 'type' => 'bool'), 'PH_BLOG_FB_COMMENTS' => array('title' => $this->l('Use FB comments on single post page?'), 'validation' => 'isBool', 'cast' => 'intval', 'required' => true, 'type' => 'bool'), 'PH_BLOG_DISPLAY_SHARER' => array('title' => $this->l('Use share icons on single post page?'), 'validation' => 'isBool', 'cast' => 'intval', 'required' => true, 'type' => 'bool'), 'PH_BLOG_DISPLAY_AUTHOR' => array('title' => $this->l('Display post author?'), 'validation' => 'isBool', 'cast' => 'intval', 'required' => true, 'type' => 'bool', 'desc' => $this->l('This option also applies to the list of posts from the category')), 'PH_BLOG_DISPLAY_DATE' => array('title' => $this->l('Display post creation date?'), 'validation' => 'isBool', 'cast' => 'intval', 'required' => true, 'type' => 'bool', 'desc' => $this->l('This option also applies to the list of posts from the category')), 'PH_BLOG_DISPLAY_FEATURED' => array('title' => $this->l('Display post featured image?'), 'validation' => 'isBool', 'cast' => 'intval', 'required' => true, 'type' => 'bool'), 'PH_BLOG_DISPLAY_CATEGORY' => array('title' => $this->l('Display post category?'), 'validation' => 'isBool', 'cast' => 'intval', 'required' => true, 'type' => 'bool', 'desc' => $this->l('This option also applies to the list of posts from the category')), 'PH_BLOG_DISPLAY_TAGS' => array('title' => $this->l('Display post tags?'), 'validation' => 'isBool', 'cast' => 'intval', 'required' => true, 'type' => 'bool', 'desc' => $this->l('This option also applies to the list of posts from the category')))), 'category_page' => array('submit' => array('title' => $this->l('Update'), 'class' => 'button'), 'title' => $this->l('Appearance Settings - Post lists'), 'image' => '../img/t/AdminOrderPreferences.gif', 'fields' => array('PH_BLOG_DISPLAY_THUMBNAIL' => array('title' => $this->l('Display post thumbnails?'), 'validation' => 'isBool', 'cast' => 'intval', 'required' => true, 'type' => 'bool'), 'PH_BLOG_DISPLAY_DESCRIPTION' => array('title' => $this->l('Display post short description?'), 'validation' => 'isBool', 'cast' => 'intval', 'required' => true, 'type' => 'bool'), 'PH_BLOG_DISPLAY_CAT_DESC' => array('title' => $this->l('Display category description on category page?'), 'validation' => 'isBool', 'cast' => 'intval', 'required' => true, 'type' => 'bool'), 'PH_BLOG_DISPLAY_CATEGORY_IMAGE' => array('title' => $this->l('Display category image?'), 'validation' => 'isBool', 'cast' => 'intval', 'required' => true, 'type' => 'bool'), 'PH_CATEGORY_IMAGE_X' => array('title' => $this->l('Default category image width (px)'), 'cast' => 'intval', 'desc' => $this->l('Default: 535 (For PrestaShop 1.5), 870 (For PrestaShop 1.6)'), 'type' => 'text', 'required' => true, 'validation' => 'isUnsignedId'), 'PH_CATEGORY_IMAGE_Y' => array('title' => $this->l('Default category image height (px)'), 'cast' => 'intval', 'desc' => $this->l('Default: 150'), 'type' => 'text', 'required' => true, 'validation' => 'isUnsignedId'))), 'thumbnails' => array('submit' => array('title' => $this->l('Update'), 'class' => 'button'), 'title' => $this->l('Thumbnails Settings'), 'image' => '../img/t/AdminOrderPreferences.gif', 'info' => '<div class="' . $alert_class . '">' . $this->l('Remember to regenerate thumbnails after doing changes here') . '</div>', 'fields' => array('PH_BLOG_THUMB_METHOD' => array('title' => $this->l('Resize method:'), 'cast' => 'intval', 'desc' => $this->l('Select wich method use to resize thumbnail. Adaptive resize: What it does is resize the image to get as close as possible to the desired dimensions, then crops the image down to the proper size from the center.'), 'show' => true, 'required' => true, 'type' => 'radio', 'choices' => array('1' => $this->l('Adaptive resize (recommended)'), '2' => $this->l('Crop from center'))), 'PH_BLOG_THUMB_X' => array('title' => $this->l('Default thumbnail width (px)'), 'cast' => 'intval', 'desc' => $this->l('Default: 255 (For PrestaShop 1.5), 420 (For PrestaShop 1.6)'), 'type' => 'text', 'required' => true, 'validation' => 'isUnsignedId'), 'PH_BLOG_THUMB_Y' => array('title' => $this->l('Default thumbnail height (px)'), 'cast' => 'intval', 'desc' => $this->l('Default: 200 (For PrestaShop 1.5 and 1.6)'), 'type' => 'text', 'required' => true, 'validation' => 'isUnsignedId'), 'PH_BLOG_THUMB_X_WIDE' => array('title' => $this->l('Default thumbnail width (wide version) (px)'), 'cast' => 'intval', 'desc' => $this->l('Default: 535 (For PrestaShop 1.5), 870 (For PrestaShop 1.6)'), 'type' => 'text', 'required' => true, 'validation' => 'isUnsignedId'), 'PH_BLOG_THUMB_Y_WIDE' => array('title' => $this->l('Default thumbnail height (wide version) (px)'), 'cast' => 'intval', 'desc' => $this->l('Default: 350 (For PrestaShop 1.5 and 1.6)'), 'type' => 'text', 'required' => true, 'validation' => 'isUnsignedId'))));
     $widgets_options = array();
     $widgets_options = array_merge($recentPosts, $relatedPosts);
     //$this->hide_multishop_checkbox = true;
     $this->fields_options = array_merge($standard_options, $widgets_options);
     return parent::renderOptions();
 }
开发者ID:OaSiis,项目名称:LDDP,代码行数:26,代码来源:AdminSimpleBlogSettingsController.php

示例2: renderOptions

 /**
  * Renders options panel
  *
  * @return string
  */
 public function renderOptions()
 {
     if (empty($this->fields_options)) {
         $this->initOptionFields();
     }
     return parent::renderOptions();
 }
开发者ID:gskema,项目名称:community-theme-16,代码行数:12,代码来源:AdminCTTopMenuItemController.php

示例3: renderOptions

 public function renderOptions()
 {
     $this->context->smarty->assign(array('marketing' => !Configuration::get('POWATAG_HMAC_KEY') || !Configuration::get('POWATAG_API_KEY')));
     $before = $this->module->display(dirname(__FILE__) . '/../../' . $this->module->name . '.php', 'powatag_configuration_before.tpl');
     $form = parent::renderOptions();
     $after = $this->module->display(dirname(__FILE__) . '/../../' . $this->module->name . '.php', 'powatag_configuration_after.tpl');
     return $before . $form . $after;
 }
开发者ID:powa,项目名称:prestashop-extension,代码行数:8,代码来源:AdminPowaTagConfigurationController.php


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