View of /mambo/branches/4.6/administrator/components/com_menus/newsfeed_category_table/newsfeed_category_table.menu.html.php
Parent Directory
|
Revision Log
Revision 1 -
(download)
(annotate)
Tue Dec 13 03:45:47 2005 UTC (7 years, 6 months ago) by root
Original Path: mambo/trunk/administrator/components/com_menus/newsfeed_category_table/newsfeed_category_table.menu.html.php
File size: 4287 byte(s)
Tue Dec 13 03:45:47 2005 UTC (7 years, 6 months ago) by root
Original Path: mambo/trunk/administrator/components/com_menus/newsfeed_category_table/newsfeed_category_table.menu.html.php
File size: 4287 byte(s)
Initial repository layout
<?php /** * @version $Id: newsfeed_category_table.menu.html.php,v 1.1 2005/07/22 01:53:06 eddieajau Exp $ * @package Mambo * @subpackage Menus * @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.' ); /** * Writes the edit form for new and existing content item * * A new record is defined when <var>$row</var> is passed with the <var>id</var> * property set to 0. * @package Mambo * @subpackage Menus */ class newsfeed_category_table_menu_html { function editCategory( &$menu, &$lists, &$params, $option ) { global $mosConfig_live_site; ?> <div id="overDiv" style="position:absolute; visibility:hidden; z-index:10000;"></div> <script language="javascript" type="text/javascript"> function submitbutton(pressbutton) { if ( pressbutton == 'cancel' ) { submitform( pressbutton ); return; } var form = document.adminForm; <?php if ( !$menu->id ) { ?> if ( getSelectedValue( 'adminForm', 'componentid' ) < 1 ) { alert( 'You must select a category' ); return; } cat = getSelectedText( 'adminForm', 'componentid' ); form.link.value = "index.php?option=com_newsfeeds&catid=" + form.componentid.value; if ( form.name.value == '' ) { form.name.value = cat; } submitform( pressbutton ); <?php } else { ?> if ( form.name.value == '' ) { alert( 'This Menu item must have a title' ); } else { submitform( pressbutton ); } <?php } ?> } </script> <form action="index2.php" method="post" name="adminForm"> <table class="adminheading"> <tr> <th> <?php echo $menu->id ? 'Edit' : 'Add';?> Menu Item :: Table - Newsfeed Category </th> </tr> </table> <table width="100%"> <tr valign="top"> <td width="60%"> <table class="adminform"> <tr> <th colspan="3"> Details </th> </tr> <tr> <td width="10%" align="right" valign="top"> Name: </td> <td width="200px"> <input type="text" name="name" size="30" maxlength="100" class="inputbox" value="<?php echo $menu->name; ?>"/> </td> <td> <?php if ( !$menu->id ) { echo mosToolTip( 'If you leave this blank the Category name will be automatically used' ); } ?> </td> </tr> <tr> <td width="10%" align="right" valign="top"> Category: </td> <td colspan="2"> <?php echo $lists['componentid']; ?> </td> </tr> <tr> <td align="right"> Url: </td> <td colspan="2"> <?php echo $lists['link']; ?> </td> </tr> <tr> <td align="right"> Parent Item: </td> <td colspan="2"> <?php echo $lists['parent'];?> </td> </tr> <tr> <td valign="top" align="right"> Ordering: </td> <td colspan="2"> <?php echo $lists['ordering']; ?> </td> </tr> <tr> <td valign="top" align="right"> Access Level: </td> <td colspan="2"> <?php echo $lists['access']; ?> </td> </tr> <tr> <td valign="top" align="right"> Published: </td> <td colspan="2"> <?php echo $lists['published']; ?> </td> </tr> <tr> <td colspan="3"> </td> </tr> </table> </td> <td width="40%"> <table class="adminform"> <tr> <th> Parameters </th> </tr> <tr> <td> <?php echo $params->render();?> </td> </tr> </table> </td> </tr> </table> <input type="hidden" name="option" value="<?php echo $option;?>" /> <input type="hidden" name="id" value="<?php echo $menu->id; ?>" /> <input type="hidden" name="menutype" value="<?php echo $menu->menutype; ?>" /> <input type="hidden" name="type" value="<?php echo $menu->type; ?>" /> <input type="hidden" name="link" value="<?php echo $menu->link; ?>" /> <input type="hidden" name="task" value="" /> <input type="hidden" name="hidemainmenu" value="0" /> </form> <script language="Javascript" src="<?php echo $mosConfig_live_site;?>/includes/js/overlib_mini.js"></script> <?php } } ?>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

