92 lines
2.3 KiB
PHP
92 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
* @package Joomla.Libraries
|
|
* @subpackage Form
|
|
*
|
|
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
|
* @license GNU General Public License version 2 or later; see LICENSE
|
|
*/
|
|
|
|
defined('JPATH_PLATFORM') or die;
|
|
|
|
JFormHelper::loadFieldClass('groupedlist');
|
|
|
|
// Import the com_menus helper.
|
|
require_once realpath(JPATH_ADMINISTRATOR . '/components/com_menus/helpers/menus.php');
|
|
|
|
/**
|
|
* Supports an HTML grouped select list of menu item grouped by menu
|
|
*
|
|
* @package Joomla.Libraries
|
|
* @subpackage Form
|
|
* @since 1.6
|
|
*/
|
|
class JFormFieldMenuitem extends JFormFieldGroupedList
|
|
{
|
|
/**
|
|
* The form field type.
|
|
*
|
|
* @var string
|
|
* @since 1.6
|
|
*/
|
|
public $type = 'MenuItem';
|
|
|
|
/**
|
|
* Method to get the field option groups.
|
|
*
|
|
* @return array The field option objects as a nested array in groups.
|
|
*
|
|
* @since 1.6
|
|
*/
|
|
protected function getGroups()
|
|
{
|
|
$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();
|
|
$language = $this->element['language'] ? explode(',', (string) $this->element['language']) : array();
|
|
|
|
// Get the menu items.
|
|
$items = MenusHelper::getMenuLinks($menuType, 0, 0, $published, $language);
|
|
|
|
// 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;
|
|
}
|
|
}
|