當前位置: 首頁>>代碼示例>>PHP>>正文


PHP mosMenuBar::editListX方法代碼示例

本文整理匯總了PHP中mosMenuBar::editListX方法的典型用法代碼示例。如果您正苦於以下問題:PHP mosMenuBar::editListX方法的具體用法?PHP mosMenuBar::editListX怎麽用?PHP mosMenuBar::editListX使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在mosMenuBar的用法示例。


在下文中一共展示了mosMenuBar::editListX方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: _DEFAULT

 /**
  * Draws the menu for the Menu Manager
  */
 public static function _DEFAULT()
 {
     mosMenuBar::startTable();
     mosMenuBar::customX('copyconfirm', 'copy.png', 'copy_f2.png', 'Copy', true);
     mosMenuBar::spacer();
     mosMenuBar::customX('deleteconfirm', 'delete.png', 'delete_f2.png', 'Delete', true);
     mosMenuBar::spacer();
     mosMenuBar::editListX();
     mosMenuBar::spacer();
     mosMenuBar::addNewX();
     mosMenuBar::spacer();
     mosMenuBar::help('screen.menumanager');
     mosMenuBar::endTable();
 }
開發者ID:jwest00724,項目名稱:Joomla-1.0,代碼行數:17,代碼來源:toolbar.menumanager.html.php

示例2: _DEFAULT

 public static function _DEFAULT()
 {
     mosMenuBar::startTable();
     mosMenuBar::publishList();
     mosMenuBar::spacer();
     mosMenuBar::deleteList();
     mosMenuBar::spacer();
     mosMenuBar::editListX('edit_source');
     mosMenuBar::spacer();
     mosMenuBar::addNew();
     mosMenuBar::spacer();
     mosMenuBar::help('screen.languages');
     mosMenuBar::endTable();
 }
開發者ID:jwest00724,項目名稱:Joomla-1.0,代碼行數:14,代碼來源:toolbar.languages.html.php

示例3: _DEFAULT

 public static function _DEFAULT()
 {
     mosMenuBar::startTable();
     mosMenuBar::custom('logout', 'cancel.png', 'cancel_f2.png', ' Logout');
     mosMenuBar::spacer();
     mosMenuBar::deleteList();
     mosMenuBar::spacer();
     mosMenuBar::editListX();
     mosMenuBar::spacer();
     mosMenuBar::addNewX();
     mosMenuBar::spacer();
     mosMenuBar::help('screen.users');
     mosMenuBar::endTable();
 }
開發者ID:jwest00724,項目名稱:Joomla-1.0,代碼行數:14,代碼來源:toolbar.users.html.php

示例4: _DEFAULT

 function _DEFAULT()
 {
     mosMenuBar::startTable();
     mosMenuBar::addNewX();
     mosMenuBar::spacer();
     mosMenuBar::editListX();
     mosMenuBar::spacer();
     mosMenuBar::deleteList();
     mosMenuBar::spacer();
     mosMenuBar::custom('logout', 'cancel.png', 'cancel_f2.png', T_('Force Logout'));
     mosMenuBar::spacer();
     mosMenuBar::help('manager');
     mosMenuBar::endTable();
 }
開發者ID:jwest00724,項目名稱:mambo,代碼行數:14,代碼來源:toolbar.users.html.php

示例5: _DEFAULT

 /**
  * Draws the menu for the Menu Manager
  */
 function _DEFAULT()
 {
     mosMenuBar::startTable();
     mosMenuBar::addNewX();
     mosMenuBar::spacer();
     mosMenuBar::editListX();
     mosMenuBar::spacer();
     mosMenuBar::customX('copyconfirm', 'copy.png', 'copy_f2.png', T_('Copy'), true);
     mosMenuBar::spacer();
     mosMenuBar::customX('deleteconfirm', 'delete.png', 'delete_f2.png', T_('Delete'), true);
     mosMenuBar::spacer();
     mosMenuBar::help('main');
     mosMenuBar::endTable();
 }
開發者ID:jwest00724,項目名稱:mambo,代碼行數:17,代碼來源:toolbar.menumanager.html.php

示例6: LIST_ITEM

 /**
 * Draws the menu for List
 */
 function LIST_ITEM()
 {
     mosMenuBar::startTable();
     mosMenuBar::publishList();
     mosMenuBar::spacer();
     mosMenuBar::unpublishList();
     mosMenuBar::spacer();
     mosMenuBar::deleteList("", "del");
     mosMenuBar::spacer();
     mosMenuBar::editListX("editA");
     mosMenuBar::spacer();
     mosMenuBar::addnewX("new");
     mosMenuBar::spacer();
     mosMenuBar::endTable();
 }
開發者ID:RangerWalt,項目名稱:ecci,代碼行數:18,代碼來源:toolbar.rd_rss.html.php

示例7: _DEFAULT

 function _DEFAULT()
 {
     mosMenuBar::startTable();
     mosMenuBar::addNewX();
     mosMenuBar::spacer();
     mosMenuBar::editListX('editA');
     mosMenuBar::spacer();
     mosMenuBar::publishList();
     mosMenuBar::spacer();
     mosMenuBar::unpublishList();
     mosMenuBar::spacer();
     mosMenuBar::trash();
     mosMenuBar::spacer();
     mosMenuBar::help('manager');
     mosMenuBar::endTable();
 }
開發者ID:jwest00724,項目名稱:mambo,代碼行數:16,代碼來源:toolbar.typedcontent.html.php

示例8: _DEFAULT

 public static function _DEFAULT()
 {
     mosMenuBar::startTable();
     mosMenuBar::publishList();
     mosMenuBar::spacer();
     mosMenuBar::unpublishList();
     mosMenuBar::spacer();
     mosMenuBar::trash();
     mosMenuBar::spacer();
     mosMenuBar::editListX('editA');
     mosMenuBar::spacer();
     mosMenuBar::addNewX();
     mosMenuBar::spacer();
     mosMenuBar::help('screen.staticcontent');
     mosMenuBar::endTable();
 }
開發者ID:jwest00724,項目名稱:Joomla-1.0,代碼行數:16,代碼來源:toolbar.typedcontent.html.php

示例9: _DEFAULT

 public static function _DEFAULT()
 {
     mosMenuBar::startTable();
     mosMenuBar::publishList();
     mosMenuBar::spacer();
     mosMenuBar::unpublishList();
     mosMenuBar::spacer();
     mosMenuBar::deleteList();
     mosMenuBar::spacer();
     mosMenuBar::editListX();
     mosMenuBar::spacer();
     mosMenuBar::addNewX();
     mosMenuBar::spacer();
     mosMenuBar::help('screen.contactmanager');
     mosMenuBar::endTable();
 }
開發者ID:jwest00724,項目名稱:Joomla-1.0,代碼行數:16,代碼來源:toolbar.contact.html.php

示例10: _DEFAULT

 function _DEFAULT()
 {
     mosMenuBar::startTable();
     mosMenuBar::publishList();
     mosMenuBar::spacer();
     mosMenuBar::unpublishList();
     mosMenuBar::spacer();
     mosMenuBar::deleteList();
     mosMenuBar::spacer();
     mosMenuBar::editListX();
     mosMenuBar::spacer();
     mosMenuBar::addNewX();
     mosMenuBar::spacer();
     mosMenuBar::help('screen.mambots');
     mosMenuBar::endTable();
 }
開發者ID:patricmutwiri,項目名稱:joomlaclube,代碼行數:16,代碼來源:toolbar.mambots.html.php

示例11: DEFAULT_MENU

 function DEFAULT_MENU()
 {
     mosMenuBar::startTable();
     mosMenuBar::publishList();
     mosMenuBar::spacer();
     mosMenuBar::unpublishList();
     mosMenuBar::spacer();
     mosMenuBar::addNewX();
     mosMenuBar::spacer();
     mosMenuBar::editListX();
     mosMenuBar::spacer();
     mosMenuBar::deleteList();
     mosMenuBar::spacer();
     mosMenuBar::help('manager');
     mosMenuBar::endTable();
 }
開發者ID:jwest00724,項目名稱:mambo,代碼行數:16,代碼來源:toolbar.comment.html.php

示例12: _LIST

 function _LIST()
 {
     global $id, $cid, $priTask, $subTask;
     mosMenuBar::startTable();
     mosMenuBar::custom('home', 'back.png', 'back_f2.png', 'Home', false);
     mosMenuBar::spacer();
     mosMenuBar::addNewX($priTask . '.new');
     mosMenuBar::spacer();
     mosMenuBar::editListX($priTask . '.edit');
     mosMenuBar::spacer();
     mosMenuBar::deleteListX('', $priTask . '.remove');
     mosMenuBar::spacer();
     mosMenuBar::publishList($priTask . '.publish');
     mosMenuBar::spacer();
     mosMenuBar::unpublishList($priTask . '.unpublish');
     mosMenuBar::endTable();
 }
開發者ID:planetangel,項目名稱:Planet-Angel-Website,代碼行數:17,代碼來源:toolbar.wbgallery.html.php

示例13: _DEFAULT

 function _DEFAULT()
 {
     mosMenuBar::startTable();
     mosMenuBar::publishList('publish');
     mosMenuBar::spacer();
     mosMenuBar::unpublishList('unpublish');
     mosMenuBar::spacer();
     mosMenuBar::deleteList('remove');
     mosMenuBar::spacer();
     mosMenuBar::editListX('edit');
     mosMenuBar::spacer();
     mosMenuBar::addNewX('add');
     mosMenuBar::spacer();
     mosMenuBar::help('screen.jumi');
     mosMenuBar::spacer();
     mosMenuBar::endTable();
 }
開發者ID:jennycraig,項目名稱:jumi,代碼行數:17,代碼來源:toolbar.jumi.html.php

示例14: _DEFAULT

 /**
  * Draws the menu for Editing an existing category
  */
 public static function _DEFAULT()
 {
     mosMenuBar::startTable();
     mosMenuBar::publishList();
     mosMenuBar::spacer();
     mosMenuBar::unpublishList();
     mosMenuBar::spacer();
     mosMenuBar::customX('copyselect', 'copy.png', 'copy_f2.png', 'Copy', true);
     mosMenuBar::spacer();
     mosMenuBar::deleteList();
     mosMenuBar::spacer();
     mosMenuBar::editListX();
     mosMenuBar::spacer();
     mosMenuBar::addNewX();
     mosMenuBar::spacer();
     mosMenuBar::help('screen.sections');
     mosMenuBar::endTable();
 }
開發者ID:jwest00724,項目名稱:Joomla-1.0,代碼行數:21,代碼來源:toolbar.sections.html.php

示例15: _DEFAULT

 /**
  * Draws the menu for Editing an existing category
  */
 function _DEFAULT()
 {
     mosMenuBar::startTable();
     mosMenuBar::publishList();
     mosMenuBar::spacer();
     mosMenuBar::unpublishList();
     mosMenuBar::spacer();
     mosMenuBar::addNewX();
     mosMenuBar::spacer();
     mosMenuBar::customX('copyselect', 'copy.png', 'copy_f2.png', T_('Copy'), true);
     mosMenuBar::spacer();
     mosMenuBar::editListX();
     mosMenuBar::spacer();
     mosMenuBar::deleteList();
     mosMenuBar::spacer();
     mosMenuBar::help('manager');
     mosMenuBar::endTable();
 }
開發者ID:jwest00724,項目名稱:mambo,代碼行數:21,代碼來源:toolbar.sections.html.php


注:本文中的mosMenuBar::editListX方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。