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


PHP JFormFieldText::getOptions方法代码示例

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


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

示例1: getOptions

 /**
  * Method to get the field options.
  *
  * @return	array	The field option objects.
  * @since	1.6
  */
 protected function getOptions()
 {
     // Initialize variables.
     $session = JFactory::getSession();
     $options = array();
     // Initialize some field attributes.
     $extension = $this->element['extension'] ? (string) $this->element['extension'] : (string) $this->element['scope'];
     $published = (string) $this->element['published'];
     // OLD values
     // Load the category options for a given extension.
     if (!empty($extension)) {
         // Filter over published state or not depending upon if it is present.
         if ($published) {
             $options = JHtml::_('category.options', $extension, array('filter.published' => explode(',', $published)));
         } else {
             $options = JHtml::_('category.options', $extension);
         }
         // Verify permissions.  If the action attribute is set, then we scan the options.
         if ($action = (string) $this->element['action']) {
             // Get the current user object.
             $user = JFactory::getUser();
             // TODO: Add a preload method to JAccess so that we can get all the asset rules in one query and cache them.
             // eg JAccess::preload('core.create', 'com_content.category')
             foreach ($options as $i => $option) {
                 // Unset the option if the user isn't authorised for it.
                 if (!$user->authorise($action, $extension . '.category.' . $option->value)) {
                     unset($options[$i]);
                 }
             }
         }
     } else {
         JError::raiseWarning(500, JText::_('JLIB_FORM_ERROR_FIELDS_CATEGORY_ERROR_EXTENSION_EMPTY'));
     }
     // if no value exists, try to load a selected filter category from the old category filters
     if (!$this->value && $this->form instanceof JForm) {
         $context = $this->form->getName();
         $this->value = array();
         for ($i = 0; $i < 20; $i++) {
             if ($this->form->getValue("catid{$i}", "params", 0)) {
                 $this->value[] = $this->form->getValue("catid{$i}", "params", 0);
             }
         }
     }
     // Merge any additional options in the XML definition.
     $options = array_merge(parent::getOptions(), $options);
     return $options;
 }
开发者ID:poorgeek,项目名称:JEvents,代码行数:53,代码来源:jevcolumns.php


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