View of /mambo/branches/4.6/administrator/components/com_contact/toolbar.contact.html.php
Parent Directory
|
Revision Log
Revision 39 -
(download)
(annotate)
Mon Dec 19 21:03:57 2005 UTC (7 years, 5 months ago) by csouza
File size: 1310 byte(s)
Mon Dec 19 21:03:57 2005 UTC (7 years, 5 months ago) by csouza
File size: 1310 byte(s)
<?php /** * @version $Id: toolbar.contact.html.php,v 1.2 2005/11/08 10:26:19 eliasan Exp $ * @package Mambo * @subpackage Contact * @copyright (C) 2000 - 2005 Miro International Pty Ltd * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * Mambo is Free Software */ /** ensure this file is being included by a parent file */ defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); /** * @package Mambo * @subpackage Contact */ class TOOLBAR_contact { /** * Draws the menu for a New Contact */ function _EDIT() { global $id; mosMenuBar::startTable(); mosMenuBar::save(); mosMenuBar::spacer(); if ( $id ) { // for existing content items the button is renamed `close` mosMenuBar::cancel( 'cancel', T_('Close') ); } else { mosMenuBar::cancel(); } mosMenuBar::spacer(); mosMenuBar::help( '453.screen.contactmanager.edit' ); mosMenuBar::endTable(); } function _DEFAULT() { mosMenuBar::startTable(); mosMenuBar::publish(); mosMenuBar::spacer(); mosMenuBar::unpublish(); mosMenuBar::spacer(); mosMenuBar::addNewX(); mosMenuBar::spacer(); mosMenuBar::editListX(); mosMenuBar::spacer(); mosMenuBar::deleteList(); mosMenuBar::spacer(); mosMenuBar::help( '453.screen.contactmanager.main' ); mosMenuBar::endTable(); } } ?>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

