168 lines
4.1 KiB
PHP
168 lines
4.1 KiB
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* @version $Id: wrapper.menu.html.php 10002 2008-02-08 10:56:57Z willebil $
|
||
|
|
* @package Joomla
|
||
|
|
* @subpackage Menus
|
||
|
|
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
|
||
|
|
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL, see LICENSE.php
|
||
|
|
* Joomla! is free software. This version may have been modified pursuant
|
||
|
|
* to the GNU General Public License, and as distributed it includes or
|
||
|
|
* is derivative of works licensed under the GNU General Public License or
|
||
|
|
* other free or open source software licenses.
|
||
|
|
* See COPYRIGHT.php for copyright notices and details.
|
||
|
|
*/
|
||
|
|
|
||
|
|
// no direct access
|
||
|
|
defined( '_VALID_MOS' ) or die( 'Restricted access' );
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Display wrapper
|
||
|
|
* @package Joomla
|
||
|
|
* @subpackage Menus
|
||
|
|
*/
|
||
|
|
class wrapper_menu_html {
|
||
|
|
|
||
|
|
|
||
|
|
function edit( &$menu, &$lists, &$params, $option ) {
|
||
|
|
global $mosConfig_live_site;
|
||
|
|
?>
|
||
|
|
<div id="overDiv" style="position:absolute; visibility:hidden; z-index:10000;"></div>
|
||
|
|
<script language="Javascript" src="<?php echo $mosConfig_live_site;?>/includes/js/overlib_mini.js"></script>
|
||
|
|
<script language="javascript" type="text/javascript">
|
||
|
|
function submitbutton(pressbutton) {
|
||
|
|
if ( pressbutton == 'cancel' ) {
|
||
|
|
submitform( pressbutton );
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
var form = document.adminForm;
|
||
|
|
if ( form.name.value == "" ) {
|
||
|
|
alert( 'This Menu item must have a title' );
|
||
|
|
} else {
|
||
|
|
<?php
|
||
|
|
if ( !$menu->id ) {
|
||
|
|
?>
|
||
|
|
if ( form.url.value == "" ){
|
||
|
|
alert( "You must provide a url." );
|
||
|
|
} else {
|
||
|
|
submitform( pressbutton );
|
||
|
|
}
|
||
|
|
<?php
|
||
|
|
} 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 :: Wrapper
|
||
|
|
</th>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
|
||
|
|
<table width="100%">
|
||
|
|
<tr valign="top">
|
||
|
|
<td width="60%">
|
||
|
|
<table class="adminform">
|
||
|
|
<tr>
|
||
|
|
<th colspan="2">
|
||
|
|
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 htmlspecialchars( $menu->name, ENT_QUOTES ); ?>"/>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td width="20%" align="right">
|
||
|
|
Wrapper Link:
|
||
|
|
</td>
|
||
|
|
<td width="80%">
|
||
|
|
<input class="inputbox" type="text" name="url" size="50" maxlength="250" value="<?php echo @$menu->url; ?>" />
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td width="10%" align="right">
|
||
|
|
URL:
|
||
|
|
</td>
|
||
|
|
<td width="80%">
|
||
|
|
<?php echo ampReplace($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" />
|
||
|
|
<input type="hidden" name="<?php echo josSpoofValue(); ?>" value="1" />
|
||
|
|
</form>
|
||
|
|
<?php
|
||
|
|
}
|
||
|
|
}
|
||
|
|
?>
|