本文整理汇总了PHP中ModulesHelper::getAssignmentOptions方法的典型用法代码示例。如果您正苦于以下问题:PHP ModulesHelper::getAssignmentOptions方法的具体用法?PHP ModulesHelper::getAssignmentOptions怎么用?PHP ModulesHelper::getAssignmentOptions使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ModulesHelper
的用法示例。
在下文中一共展示了ModulesHelper::getAssignmentOptions方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
}
</script>
<fieldset class="adminform">
<legend><?php
echo JText::_('COM_MODULES_MENU_ASSIGNMENT');
?>
</legend>
<label id="jform_menus-lbl" for="jform_menus"><?php
echo JText::_('COM_MODULES_MODULE_ASSIGN');
?>
</label>
<fieldset id="jform_menus" class="radio">
<?php
$options = ModulesHelper::getAssignmentOptions($that->item->client_id);
$displayValue = $displayText = $list = "";
foreach ($options as $option) {
$text = JText::_($option->text);
if ((string) $that->item->assignment == (string) $option->value) {
$displayValue = $option->value;
$displayText = $text;
}
$list .= '<li data-value="' . $option->value . '" data-text="' . $text . '" data-icon="" data-dynamic="">' . "\n";
$list .= ' <a href="#"><span>' . $text . '</span></a>' . "\n";
$list .= '</li>' . "\n";
}
?>
<div class="sprocket-dropdown">
<a class="btn dropdown-toggle" data-toggle="dropdown" href="#">
<span><?php
示例2:
</script>
<fieldset class="adminform">
<legend><?php
echo JText::_('COM_MODULES_MENU_ASSIGNMENT');
?>
</legend>
<label id="jform_menus-lbl" for="jform_menus"><?php
echo JText::_('COM_MODULES_MODULE_ASSIGN');
?>
</label>
<fieldset id="jform_menus" class="radio">
<select name="jform[assignment]" id="jform_assignment">
<?php
echo JHtml::_('select.options', ModulesHelper::getAssignmentOptions($this->item->client_id), 'value', 'text', $this->item->assignment, true);
?>
</select>
</fieldset>
<label id="jform_menuselect-lbl" for="jform_menuselect"><?php
echo JText::_('JGLOBAL_MENU_SELECTION');
?>
</label>
<button type="button" class="jform-assignments-button jform-rightbtn" onclick="$$('.chkbox').each(function(el) { el.checked = !el.checked; });">
<?php
echo JText::_('JGLOBAL_SELECTION_INVERT');
?>
</button>
示例3: render
function render($type)
{
$sliders =& JPane::getInstance('sliders');
echo $sliders->startPane('params');
TranslateParams_xml::renderDoublecolumnParams($this->form, 'params', 'com_modules', $sliders);
echo $sliders->endPane();
// menu assignments
// Initiasile related data.
if (!class_exists('MenusHelper')) {
JLoader::register('MenusHelper', JPATH_ADMINISTRATOR . '/components/com_menus/helpers/menus.php', true);
}
if (!class_exists('ModulesHelper')) {
JLoader::register('ModulesHelper', JPATH_ADMINISTRATOR . '/components/com_modules/helpers/modules.php', true);
}
$menuTypes = MenusHelper::getMenuLinks();
?>
<script type="text/javascript">
window.addEvent('domready', function(){
validate();
document.getElements('select').addEvent('change', function(e){validate();});
});
function validate(){
var value = document.id('jform_assignment').value;
var list = document.id('menu-assignment');
if(value == '-' || value == '0'){
$$('.jform-assignments-button').each(function(el) {el.setProperty('disabled', true); });
list.getElements('input').each(function(el){
el.setProperty('disabled', true);
if (value == '-'){
el.setProperty('checked', false);
} else {
el.setProperty('checked', true);
}
});
} else {
$$('.jform-assignments-button').each(function(el) {el.setProperty('disabled', false); });
list.getElements('input').each(function(el){
el.setProperty('disabled', false);
});
}
}
</script>
<div class="width-100 fltlft">
<fieldset class="adminform">
<legend><?php
echo JText::_('COM_MODULES_MENU_ASSIGNMENT');
?>
</legend>
<label id="jform_menus-lbl" for="jform_menus"><?php
echo JText::_('COM_MODULES_MODULE_ASSIGN');
?>
</label>
<fieldset id="jform_menus" class="radio">
<select name="jform[assignment]" id="jform_assignment">
<?php
echo JHtml::_('select.options', ModulesHelper::getAssignmentOptions($this->item->client_id), 'value', 'text', $this->item->assignment, true);
?>
</select>
</fieldset>
<label id="jform_menuselect-lbl" for="jform_menuselect"><?php
echo JText::_('JGLOBAL_MENU_SELECTION');
?>
</label>
<button type="button" class="jform-assignments-button jform-rightbtn" onclick="$$('.chk-menulink').each(function(el) { el.checked = !el.checked; });">
<?php
echo JText::_('JGLOBAL_SELECTION_INVERT');
?>
</button>
<button type="button" class="jform-assignments-button jform-rightbtn" onclick="$$('.chk-menulink').each(function(el) { el.checked = false; });">
<?php
echo JText::_('JGLOBAL_SELECTION_NONE');
?>
</button>
<button type="button" class="jform-assignments-button jform-rightbtn" onclick="$$('.chk-menulink').each(function(el) { el.checked = true; });">
<?php
echo JText::_('JGLOBAL_SELECTION_ALL');
?>
</button>
<div class="clr"></div>
<div id="menu-assignment">
<?php
echo JHtml::_('tabs.start', 'module-menu-assignment-tabs', array('useCookie' => 1));
?>
<?php
foreach ($menuTypes as &$type) {
echo JHtml::_('tabs.panel', $type->title ? $type->title : $type->menutype, $type->menutype . '-details');
$count = count($type->links);
$i = 0;
if ($count) {
?>
//.........这里部分代码省略.........