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

📄 view.php

📁 Joomla!是一套获得过多个奖项的内容管理系统(Content Management System, CMS)。Joomla!采用PHP+MySQL数据库开发
💻 PHP
字号:
<?php/** * @version		$Id: view.php 11625 2009-02-15 15:32:42Z kdevine $ * @package		Joomla * @subpackage	Content * @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. */// no direct accessdefined('_JEXEC') or die('Restricted access');jimport('joomla.application.component.view');/** * HTML Article Element View class for the Content component * * @package		Joomla * @subpackage	Content * @since 1.5 */class ContentViewElement extends JView{	function display()	{		global $mainframe;		// Initialize variables		$db			= &JFactory::getDBO();		$nullDate	= $db->getNullDate();		$document	= & JFactory::getDocument();		$document->setTitle(JText::_('Article Selection'));		JHTML::_('behavior.modal');		$template = $mainframe->getTemplate();		$document->addStyleSheet("templates/$template/css/general.css");		$limitstart = JRequest::getVar('limitstart', '0', '', 'int');		$lists = $this->_getLists();		//Ordering allowed ?		$ordering = ($lists['order'] == 'section_name' && $lists['order_Dir'] == 'ASC');		$rows = &$this->get('List');		$page = &$this->get('Pagination');		JHTML::_('behavior.tooltip');		?>		<form action="index.php?option=com_content&amp;task=element&amp;tmpl=component&amp;object=id" method="post" name="adminForm">			<table>				<tr>					<td 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">						<?php						echo $lists['sectionid'];						echo $lists['catid'];						?>					</td>				</tr>			</table>			<table class="adminlist" cellspacing="1">			<thead>				<tr>					<th width="5">						<?php echo JText::_( 'Num' ); ?>					</th>					<th class="title">						<?php echo JHTML::_('grid.sort',   'Title', 'c.title', @$lists['order_Dir'], @$lists['order'] ); ?>					</th>					<th width="7%">						<?php echo JHTML::_('grid.sort',   'Access', 'groupname', @$lists['order_Dir'], @$lists['order'] ); ?>					</th>					<th width="2%" class="title">						<?php echo JHTML::_('grid.sort',   'ID', 'c.id', @$lists['order_Dir'], @$lists['order'] ); ?>					</th>					<th class="title" width="15%" nowrap="nowrap">						<?php echo JHTML::_('grid.sort',   'Section', 'section_name', @$lists['order_Dir'], @$lists['order'] ); ?>					</th>					<th  class="title" width="15%" nowrap="nowrap">						<?php echo JHTML::_('grid.sort',   'Category', 'cc.title', @$lists['order_Dir'], @$lists['order'] ); ?>					</th>					<th align="center" width="10">						<?php echo JHTML::_('grid.sort',   'Date', 'c.created', @$lists['order_Dir'], @$lists['order'] ); ?>					</th>				</tr>			</thead>			<tfoot>			<tr>				<td colspan="15">					<?php echo $page->getListFooter(); ?>				</td>			</tr>			</tfoot>			<tbody>			<?php			$k = 0;			for ($i=0, $n=count( $rows ); $i < $n; $i++)			{				$row = &$rows[$i];				$link 	= '';				$date	= JHTML::_('date',  $row->created, JText::_('DATE_FORMAT_LC4') );				$access	= JHTML::_('grid.access',   $row, $i, $row->state );				?>				<tr class="<?php echo "row$k"; ?>">					<td>						<?php echo $page->getRowOffset( $i ); ?>					</td>					<td>						<a style="cursor: pointer;" onclick="window.parent.jSelectArticle('<?php echo $row->id; ?>', '<?php echo str_replace(array("'", "\""), array("\\'", ""),$row->title); ?>', '<?php echo JRequest::getVar('object'); ?>');">							<?php echo htmlspecialchars($row->title, ENT_QUOTES, 'UTF-8'); ?></a>					</td>					<td align="center">						<?php echo $row->groupname;?>					</td>					<td>						<?php echo $row->id; ?>					</td>						<td>							<?php echo $row->section_name; ?>						</td>					<td>						<?php echo $row->cctitle; ?>					</td>					<td nowrap="nowrap">						<?php echo $date; ?>					</td>				</tr>				<?php				$k = 1 - $k;			}			?>			</tbody>			</table>		<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']; ?>" />		</form>		<?php	}	function _getLists()	{		global $mainframe;		// Initialize variables		$db		= &JFactory::getDBO();		// Get some variables from the request		$sectionid			= JRequest::getVar( 'sectionid', -1, '', 'int' );		$redirect			= $sectionid;		$option				= JRequest::getCmd( 'option' );		$filter_order		= $mainframe->getUserStateFromRequest('articleelement.filter_order',		'filter_order',		'',	'cmd');		$filter_order_Dir	= $mainframe->getUserStateFromRequest('articleelement.filter_order_Dir',	'filter_order_Dir',	'',	'word');		$filter_state		= $mainframe->getUserStateFromRequest('articleelement.filter_state',		'filter_state',		'',	'word');		$catid				= $mainframe->getUserStateFromRequest('articleelement.catid',				'catid',			0,	'int');		$filter_authorid	= $mainframe->getUserStateFromRequest('articleelement.filter_authorid',		'filter_authorid',	0,	'int');		$filter_sectionid	= $mainframe->getUserStateFromRequest('articleelement.filter_sectionid',	'filter_sectionid',	-1,	'int');		$limit				= $mainframe->getUserStateFromRequest('global.list.limit',					'limit', $mainframe->getCfg('list_limit'), 'int');		$limitstart			= $mainframe->getUserStateFromRequest('articleelement.limitstart',			'limitstart',		0,	'int');		$search				= $mainframe->getUserStateFromRequest('articleelement.search',				'search',			'',	'string');		$search				= JString::strtolower($search);		// get list of categories for dropdown filter		$filter = ($filter_sectionid >= 0) ? ' WHERE cc.section = '.$db->Quote($filter_sectionid) : '';		// get list of categories for dropdown filter		$query = 'SELECT cc.id AS value, cc.title AS text, section' .				' FROM #__categories AS cc' .				' INNER JOIN #__sections AS s ON s.id = cc.section' .				$filter .				' ORDER BY s.ordering, cc.ordering';		$lists['catid'] = ContentHelper::filterCategory($query, $catid);		// get list of sections for dropdown filter		$javascript = 'onchange="document.adminForm.submit();"';		$lists['sectionid'] = JHTML::_('list.section', 'filter_sectionid', $filter_sectionid, $javascript);		// table ordering		$lists['order_Dir']	= $filter_order_Dir;		$lists['order']		= $filter_order;		// search filter		$lists['search'] = $search;		return $lists;	}}

⌨️ 快捷键说明

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