📄 admin.mambots.html.php
字号:
<?php
/**
* @version $Id: admin.mambots.html.php,v 1.14 2005/02/16 16:27:10 saka Exp $
* @package Mambo
* @subpackage Mambots
* @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 Mambots
*/
class HTML_modules {
/**
* Writes a list of the defined modules
* @param array An array of category objects
*/
function showMambots( &$rows, $client, &$pageNav, $option, &$lists, $search ) {
global $my, $adminLanguage;
mosCommonHTML::loadOverlib();
?>
<form action="index2.php" method="post" name="adminForm">
<table class="adminheading">
<tr>
<th class="modules">
<?php echo $adminLanguage->A_COMP_MAMB_MANAGER;?> <small><small>[ <?php echo $client == 'admin' ? $adminLanguage->A_COMP_MAMB_ADMIN : $adminLanguage->A_COMP_MAMB_SITE;?> ]<small></small>
</th>
<td>
<?php echo $adminLanguage->A_COMP_FILTER;?>:
</td>
<td>
<input type="text" name="search" value="<?php echo $search;?>" class="text_area" onChange="document.adminForm.submit();" />
</td>
<td width="right">
<?php echo $lists['type'];?>
</td>
</tr>
</table>
<table class="adminlist">
<tr>
<th width="20">#</th>
<th width="20">
<input type="checkbox" name="toggle" value="" onclick="checkAll(<?php echo count( $rows );?>);" />
</th>
<th class="title">
<?php echo $adminLanguage->A_COMP_MAMB_NAME;?>
</th>
<th nowrap="nowrap" width="10%">
<?php echo $adminLanguage->A_COMP_PUBLISHED;?>
</th>
<th colspan="2" nowrap="true" width="5%">
<?php echo $adminLanguage->A_COMP_REORDER;?>
</th>
<th width="2%">
<?php echo $adminLanguage->A_COMP_ORDER;?>
</th>
<th width="1%">
<a href="javascript: saveorder( <?php echo count( $rows )-1; ?> )"><img src="images/filesave.png" border="0" width="16" height="16" alt="Save Order" /></a>
</th>
<th nowrap="nowrap" width="10%">
<?php echo $adminLanguage->A_COMP_ACCESS;?>
</th>
<th nowrap="nowrap" align="left" width="10%">
<?php echo $adminLanguage->A_COMP_TYPE;?>
</th>
<th nowrap="nowrap" align="left" width="10%">
<?php echo $adminLanguage->A_COMP_MAMB_FILE;?>
</th>
</tr>
<?php
$k = 0;
for ($i=0, $n=count( $rows ); $i < $n; $i++) {
$row = &$rows[$i];
$link = 'index2.php?option=com_mambots&client='. $client .'&task=editA&hidemainmenu=1&id='. $row->id;
$access = mosCommonHTML::AccessProcessing( $row, $i );
$checked = mosCommonHTML::CheckedOutProcessing( $row, $i );
$published = mosCommonHTML::PublishedProcessing( $row, $i );
?>
<tr class="<?php echo "row$k"; ?>">
<td align="right"><?php echo $pageNav->rowNumber( $i ); ?></td>
<td>
<?php echo $checked; ?>
</td>
<td>
<?php
if ( $row->checked_out && ( $row->checked_out != $my->id ) ) {
echo $row->name;
} else {
?>
<a href="<?php echo $link; ?>">
<?php echo $row->name; ?>
</a>
<?php
}
?>
</td>
<td align="center">
<?php echo $published;?>
</td>
<td>
<?php echo $pageNav->orderUpIcon( $i, ($row->folder == @$rows[$i-1]->folder && $row->ordering > -10000 && $row->ordering < 10000) ); ?>
</td>
<td>
<?php echo $pageNav->orderDownIcon( $i, $n, ($row->folder == @$rows[$i+1]->folder && $row->ordering > -10000 && $row->ordering < 10000) ); ?>
</td>
<td align="center" colspan="2">
<input type="text" name="order[]" size="5" value="<?php echo $row->ordering; ?>" class="text_area" style="text-align: center" />
</td>
<td align="center">
<?php echo $access;?>
</td>
<td align="left" nowrap="true">
<?php echo $row->folder;?>
</td>
<td align="left" nowrap="true">
<?php echo $row->element;?>
</td>
</tr>
<?php
$k = 1 - $k;
}
?>
</table>
<?php echo $pageNav->getListFooter(); ?>
<input type="hidden" name="option" value="<?php echo $option;?>" />
<input type="hidden" name="task" value="" />
<input type="hidden" name="client" value="<?php echo $client;?>" />
<input type="hidden" name="boxchecked" value="0" />
<input type="hidden" name="hidemainmenu" value="0" />
</form>
<?php
}
/**
* Writes the edit form for new and existing module
*
* A new record is defined when <var>$row</var> is passed with the <var>id</var>
* property set to 0.
* @param mosCategory The category object
* @param array <p>The modules of the left side. The array elements are in the form
* <var>$leftorder[<i>order</i>] = <i>label</i></var>
* where <i>order</i> is the module order from the db table and <i>label</i> is a
* text label associciated with the order.</p>
* @param array See notes for leftorder
* @param array An array of select lists
* @param object Parameters
*/
function editMambot( &$row, &$lists, &$params, $option ) {
global $mosConfig_live_site, $adminLanguage;
$row->nameA = '';
if ( $row->id ) {
$row->nameA = '<small><small>[ '. $row->name .' ]</small></small>';
}
?>
<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;
}
// validation
var form = document.adminForm;
if (form.name.value == "") {
alert( "<?php echo $adminLanguage->A_COMP_MAMB_MUST_NAME;?>" );
} else if (form.element.value == "") {
alert( "<?php echo $adminLanguage->A_COMP_MAMB_MUST_FNAME;?>" );
} else {
submitform(pressbutton);
}
}
</script>
<table class="adminheading">
<tr>
<th class="mambots">
<?php echo $row->id ? $adminLanguage->A_COMP_EDIT : $adminLanguage->A_COMP_ADD;?> Mambot -> <?php echo $row->name; ?>
<small>
<?php echo $row->id ? $adminLanguage->A_EDIT : $adminLanguage->A_NEW;?>
</small>
<?php echo $row->nameA; ?>
</th>
</tr>
</table>
<form action="index2.php" method="post" name="adminForm">
<table cellspacing="0" cellpadding="0" width="100%">
<tr valign="top">
<td width="60%" valign="top">
<table class="adminform">
<tr>
<th colspan="2">
<?php echo $adminLanguage->A_COMP_MAMB_DETAILS;?>
</th>
<tr>
<tr>
<td width="100" align="left">
<?php echo $adminLanguage->A_COMP_NAME;?>:
</td>
<td>
<input class="text_area" type="text" name="name" size="35" value="<?php echo $row->name; ?>" />
</td>
</tr>
<tr>
<td valign="top" align="left">
<?php echo $adminLanguage->A_COMP_MAMB_FOLDER;?>:
</td>
<td>
<?php echo $lists['folder']; ?>
</td>
</tr>
<tr>
<td valign="top" align="left">
<?php echo $adminLanguage->A_COMP_MAMB_MFILE;?>:
</td>
<td>
<input class="text_area" type="text" name="element" size="35" value="<?php echo $row->element; ?>" />.php
</td>
</tr>
<tr>
<td valign="top" align="left">
<?php echo $adminLanguage->A_COMP_MAMB_ORDER;?>:
</td>
<td>
<?php echo $lists['ordering']; ?>
</td>
</tr>
<tr>
<td valign="top" align="left">
<?php echo $adminLanguage->A_COMP_ACCESS_LEVEL;?>:
</td>
<td>
<?php echo $lists['access']; ?>
</td>
</tr>
<tr>
<td valign="top">
<?php echo $adminLanguage->A_COMP_PUBLISHED;?>:
</td>
<td>
<?php echo $lists['published']; ?>
</td>
</tr>
<tr>
<td valign="top" colspan="2">
</td>
</tr>
<tr>
<td valign="top">
<?php echo $adminLanguage->A_COMP_DESCRIPTION;?>:
</td>
<td>
<?php echo $row->description; ?>
</td>
</tr>
</table>
</td>
<td width="40%">
<table class="adminform">
<tr>
<th colspan="2">
<?php echo $adminLanguage->A_COMP_CONT_PARAMETERS;?>
</th>
<tr>
<tr>
<td>
<?php
if ( $row->id ) {
echo $params->render();
} else {
echo '<i><?php echo $adminLanguage->A_COMP_NO_PARAMETERS;?></i>';
}
?>
</td>
</tr>
</table>
</td>
</tr>
</table>
<input type="hidden" name="option" value="<?php echo $option; ?>" />
<input type="hidden" name="id" value="<?php echo $row->id; ?>" />
<input type="hidden" name="client" value="<?php echo $row->client_id; ?>" />
<input type="hidden" name="task" value="" />
</form>
<script language="Javascript" src="<?php echo $mosConfig_live_site;?>/includes/js/overlib_mini.js"></script>
<?php
}
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -