⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 client.php

📁 Joomla!是一套获得过多个奖项的内容管理系统(Content Management System, CMS)。Joomla!采用PHP+MySQL数据库开发
💻 PHP
字号:
<?php/** * @version		$Id: client.php 10381 2008-06-01 03:35:53Z pasamio $ * @package		Joomla * @subpackage	Banners * @copyright	Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved. * @license		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. *//** * @package		Joomla * @subpackage	Banners */class BannersViewClients{	function setClientsToolbar()	{		JToolBarHelper::title( JText::_( 'Banner Client Manager' ), 'generic.png' );		JToolBarHelper::deleteList( '', 'remove' );		JToolBarHelper::editListX( 'edit' );		JToolBarHelper::addNewX( 'add' );		JToolBarHelper::help( 'screen.banners.client' );	}	function clients( &$rows, &$pageNav, &$lists )	{		BannersViewClients::setClientsToolbar();		$user =& JFactory::getUser();		JHTML::_('behavior.tooltip');		?>		<form action="index.php" method="post" name="adminForm">			<table>			<tr>				<td align="left" width="100%">					<?php echo JText::_( 'Filter' ); ?>:					<input type="text" name="search" id="search" value="<?php echo $lists['search'];?>" class="text_area" onchange="document.adminForm.submit();" />					<button onclick="this.form.submit();"><?php echo JText::_( 'Go' ); ?></button>					<button onclick="document.getElementById('search').value='';this.form.submit();"><?php echo JText::_( 'Reset' ); ?></button>				</td>				<td nowrap="nowrap">				</td>			</tr>			</table>			<table class="adminlist">			<thead>			<tr>				<th width="20">					<?php echo JText::_( 'Num' ); ?>				</th>				<th width="20">					<input type="checkbox" name="toggle" value="" onclick="checkAll(<?php echo count( $rows ); ?>);" />				</th>				<th nowrap="nowrap" class="title">					<?php echo JHTML::_('grid.sort',   'Client Name', 'a.name', @$lists['order_Dir'], @$lists['order'] ); ?>				</th>				<th nowrap="nowrap" class="title" width="35%">					<?php echo JHTML::_('grid.sort',   'Contact', 'a.contact', @$lists['order_Dir'], @$lists['order'] ); ?>				</th>				<th align="center" nowrap="nowrap" width="5%">					<?php echo JHTML::_('grid.sort',   'No. of Active Banners', 'bid', @$lists['order_Dir'], @$lists['order'] ); ?>				</th>				<th width="1%" nowrap="nowrap">					<?php echo JHTML::_('grid.sort',   'ID', 'a.cid', @$lists['order_Dir'], @$lists['order'] ); ?>				</th>			</tr>			</thead>			<tfoot>			<tr>				<td colspan="6">					<?php echo $pageNav->getListFooter(); ?>				</td>			</tr>			</tfoot>			<tbody>			<?php			$k = 0;			for ($i=0, $n=count( $rows ); $i < $n; $i++) {				$row = &$rows[$i];				$row->id		= $row->cid;				$link			= JRoute::_( 'index.php?option=com_banners&c=client&task=edit&cid[]='. $row->id );				$checked		= JHTML::_('grid.checkedout',   $row, $i );				?>				<tr class="<?php echo "row$k"; ?>">					<td align="center">						<?php echo $pageNav->getRowOffset( $i ); ?>					</td>					<td>						<?php echo $checked; ?>					</td>					<td>						<?php						if (  JTable::isCheckedOut($user->get ('id'), $row->checked_out ) ) {							echo $row->name;						} else {							?>								<span class="editlinktip hasTip" title="<?php echo JText::_( 'Edit' );?>::<?php echo $row->name; ?>">							<a href="<?php echo $link; ?>">								<?php echo $row->name; ?></a>								</span>							<?php						}						?>					</td>					<td>						<?php echo $row->contact; ?>					</td>					<td align="center">						<?php echo $row->nbanners;?>					</td>					<td align="center">						<?php echo $row->cid; ?>					</td>				</tr>				<?php				$k = 1 - $k;			}			?>			</tbody>			</table>		<input type="hidden" name="c" value="client" />		<input type="hidden" name="option" value="com_banners" />		<input type="hidden" name="task" value="" />		<input type="hidden" name="boxchecked" value="0" />		<input type="hidden" name="filter_order" value="<?php echo $lists['order']; ?>" />		<input type="hidden" name="filter_order_Dir" value="<?php echo $lists['order_Dir']; ?>" />		<?php echo JHTML::_( 'form.token' ); ?>		</form>		<?php	}	function setClientToolbar()	{		$task = JRequest::getVar( 'task', '', 'method', 'string');		JToolBarHelper::title( $task == 'add' ? JText::_( 'Banner Client' ) . ': <small><small>[ '. JText::_( 'New' ) .' ]</small></small>' : JText::_( 'Banner Client' ) . ': <small><small>[ '. JText::_( 'Edit' ) .' ]</small></small>', 'generic.png' );		JToolBarHelper::save( 'save' );		JToolBarHelper::apply('apply');		JToolBarHelper::cancel( 'cancel' );		JToolBarHelper::help( 'screen.banners.client.edit' );	}	function client( &$row )	{		BannersViewClients::setClientToolbar();		JRequest::setVar( 'hidemainmenu', 1 );		JFilterOutput::objectHTMLSafe( $row, ENT_QUOTES, 'extrainfo' );		?>		<script language="javascript" type="text/javascript">		<!--		function submitbutton(pressbutton)		{			var form = document.adminForm;			if (pressbutton == 'cancel')			{				submitform( pressbutton );				return;			}			// do field validation			if (form.name.value == "")			{				alert( "<?php echo JText::_( 'Please fill in the Client Name.', true ); ?>" );			}			else if (form.contact.value == "")			{				alert( "<?php echo JText::_( 'Please fill in the Contact Name.', true ); ?>" );			}			else if (form.email.value == "")			{				alert( "<?php echo JText::_( 'Please fill in the Contact Email.', true ); ?>" );			}			else if (!isEmail( form.email.value ))			{				alert( "<?php echo JText::_( 'Please provide a valid Contact Email.', true ); ?>" );			}			else			{				submitform( pressbutton );			}		}		//-->		</script>		<form action="index.php" method="post" name="adminForm">		<div class="col width-50">			<fieldset class="adminform">				<legend><?php echo JText::_( 'Details' ); ?></legend>				<table class="admintable">					<tr>						<td width="20%" nowrap="nowrap">							<label for="name">								<?php echo JText::_( 'Client Name' ); ?>:							</label>						</td>						<td>							<input class="inputbox" type="text" name="name" id="name" size="40" maxlength="60" value="<?php echo $row->name; ?>" />						</td>					</tr>					<tr>						<td nowrap="nowrap">							<label for="contact">								<?php echo JText::_( 'Contact Name' ); ?>:							</label>						</td>						<td>							<input class="inputbox" type="text" name="contact" id="contact" size="40" maxlength="60" value="<?php echo $row->contact; ?>" />						</td>					</tr>					<tr>						<td nowrap="nowrap">							<label for="email">								<?php echo JText::_( 'Contact Email' ); ?>:							</label>						</td>						<td>							<input class="inputbox" type="text" name="email" id="email" size="40" maxlength="60" value="<?php echo $row->email; ?>" />						</td>					</tr>					</table>			</fieldset>		</div>		<div class="col width-50">			<fieldset class="adminform">				<legend><?php echo JText::_( 'Extra Info' ); ?></legend>				<table class="admintable" width="100%">				<tr>					<td width="100%" valign="top">						<textarea class="inputbox" name="extrainfo" id="extrainfo" cols="40" rows="10" style="width:90%"><?php echo str_replace('&','&amp;',$row->extrainfo);?></textarea>					</td>				</tr>				</table>			</fieldset>		</div>		<div class="clr"></div>		<input type="hidden" name="c" value="client" />		<input type="hidden" name="option" value="com_banners" />		<input type="hidden" name="cid" value="<?php echo $row->cid; ?>" />		<input type="hidden" name="client_id" value="<?php echo $row->cid; ?>" />		<input type="hidden" name="task" value="" />		<?php echo JHTML::_( 'form.token' ); ?>		</form>		<?php	}}

⌨️ 快捷键说明

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