toolbar.easygallery.html.php

来自「这是一个joomla系统的插件, 这是一个joomla系统的插件」· PHP 代码 · 共 78 行

PHP
78
字号
<?php/*** @package EasyGallery* @copyright (C) 2006 Joomla-addons.org* @author  Adam van Dongen* @version $Id: toolbar.easygallery.html.php 4 2007-06-16 14:22:19Z websmurf $* * --------------------------------------------------------------------------------* All rights reserved. Easy Gallery Component for Joomla!** This program is free software; you can redistribute it and/or* modify it under the terms of the Joomla-addons Free Software License * See LICENSE.php for more information.** This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  * --------------------------------------------------------------------------------**/class TOOLBAR_easygallery {	function _EDIT() {		global $id;		mosMenuBar::startTable();		mosMenuBar::spacer();		mosMenuBar::save();		mosMenuBar::spacer();		mosMenuBar::apply();		mosMenuBar::spacer();		mosMenuBar::cancel();		mosMenuBar::endTable();	}		function _SAVE() {		global $id;		mosMenuBar::startTable();		mosMenuBar::spacer();		mosMenuBar::save();		mosMenuBar::spacer();		mosMenuBar::cancel();		mosMenuBar::endTable();	}	function _DEFAULT() {		mosMenuBar::startTable();		mosMenuBar::deleteListX();		mosMenuBar::spacer();		mosMenuBar::editListX();		mosMenuBar::spacer();		mosMenuBar::addNewX();		mosMenuBar::endTable();	}		function _DEFAULT_PHOTOS() {		mosMenuBar::startTable();		mosMenuBar::publishList();		mosMenuBar::unpublishList();		mosMenuBar::divider();		mosMenuBar::deleteListX();		mosMenuBar::spacer();		mosMenuBar::editListX();		mosMenuBar::spacer();		mosMenuBar::custom('new', 'upload.png', 'upload_f2.png', 'Upload', false);		mosMenuBar::endTable();	}		function _EDIT_PHOTOS() {		global $id;		mosMenuBar::startTable();		mosMenuBar::custom('upload', 'upload.png', 'upload_f2.png', 'Upload', false);		mosMenuBar::cancel('cancel', 'Close');		mosMenuBar::endTable();	}}?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?