joomla-platform / libraries / joomla / form / fields / menuitem.php

<?php
/**
 * @package     Joomla.Platform
 * @subpackage  Form
 *
 * @copyright   Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE
 */

defined('JPATH_PLATFORM') or die;

jimport('joomla.html.html');
jimport('joomla.form.formfield');
jimport('joomla.form.helper');
JFormHelper::loadFieldClass('groupedlist');

// Import the com_menus helper.
require_once realpath(JPATH_ADMINISTRATOR.'/components/com_menus/helpers/menus.php');

/**
 * Supports an HTML select list of menu item
 *
 * @package     Joomla.Platform
 * @subpackage  Form
 * @since       11.1
 */
class JFormFieldMenuItem extends JFormFieldGroupedList
{
    /**
     * The form field type.
     *
     * @var     string
     * @since   11.1
     */
    public $type = 'MenuItem';

    /**
     * Method to get the field option groups.
     *
     * @return  array   The field option objects as a nested array in groups.
     * @since   11.1
     */
    protected function getGroups()
    {
        // Initialize variables.
        $groups = array();

        // Initialize some field attributes.
        $menuType = (string) $this->element['menu_type'];
        $published = $this->element['published'] ? explode(',', (string) $this->element['published']) : array();
        $disable = $this->element['disable'] ? explode(',', (string) $this->element['disable']) : array();

        // Get the menu items.
        $items = MenusHelper::getMenuLinks($menuType, 0, 0, $published);

        // Build group for a specific menu type.
        if ($menuType) {
            // Initialize the group.
            $groups[$menuType] = array();

            // Build the options array.
            foreach($items as $link) {
                $groups[$menuType][] = JHtml::_('select.option', $link->value, $link->text, 'value', 'text', in_array($link->type, $disable));
            }
        }

        // Build groups for all menu types.
        else {
            // Build the groups arrays.
            foreach($items as $menu)
            {
                // Initialize the group.
                $groups[$menu->menutype] = array();

                // Build the options array.
                foreach($menu->links as $link) {
                    $groups[$menu->menutype][] = JHtml::_('select.option', $link->value, $link->text, 'value', 'text', in_array($link->type, $disable));
                }
            }
        }

        // Merge any additional groups in the XML definition.
        $groups = array_merge(parent::getGroups(), $groups);

        return $groups;
    }
}
Tip: Filter by directory path e.g. /media app.js to search for public/media/app.js.
Tip: Use camelCasing e.g. ProjME to search for ProjectModifiedEvent.java.
Tip: Filter by extension type e.g. /repo .js to search for all .js files in the /repo directory.
Tip: Separate your search with spaces e.g. /ssh pom.xml to search for src/ssh/pom.xml.
Tip: Use ↑ and ↓ arrow keys to navigate and return to view the file.
Tip: You can also navigate files with Ctrl+j (next) and Ctrl+k (previous) and view the file with Ctrl+o.
Tip: You can also navigate files with Alt+j (next) and Alt+k (previous) and view the file with Alt+o.