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

📄 helper.php

📁 国外免费开源的内容管理系统
💻 PHP
字号:
<?php/** * @version		$Id: helper.php 10119 2008-03-08 11:27:22Z eddieajau $ * @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. *//** * Content Component Helper * * @static * @package		Joomla * @subpackage	Content * @since 1.5 */class ContentHelper{	function saveContentPrep( &$row )	{		// Get submitted text from the request variables		$text = JRequest::getVar( 'text', '', 'post', 'string', JREQUEST_ALLOWRAW );		// Clean text for xhtml transitional compliance		$text		= str_replace( '<br>', '<br />', $text );		// Search for the {readmore} tag and split the text up accordingly.		$tagPos	= JString::strpos( $text, '<hr id="system-readmore" />' );		if ( $tagPos === false )		{			$row->introtext	= $text;		} else		{			$row->introtext	= JString::substr($text, 0, $tagPos);			$row->fulltext	= JString::substr($text, $tagPos + 27 );		}		// Filter settings		jimport( 'joomla.application.component.helper' );		$config	= JComponentHelper::getParams( 'com_content' );		$user	= &JFactory::getUser();		$gid	= $user->get( 'gid' );		$filterGroups	= (array) $config->get( 'filter_groups' );		if (in_array( $gid, $filterGroups ))		{			$filterType		= $config->get( 'filter_type' );			$filterTags		= preg_split( '#[,\s]+#', trim( $config->get( 'filter_tags' ) ) );			$filterAttrs	= preg_split( '#[,\s]+#', trim( $config->get( 'filter_attritbutes' ) ) );			switch ($filterType)			{				case 'NH':					$filter	= new JFilterInput();					break;				case 'WL':					$filter	= new JFilterInput( $filterTags, $filterAttrs, 0, 0 );					break;				case 'BL':				default:					$filter	= new JFilterInput( $filterTags, $filterAttrs, 1, 1 );					break;			}			$row->introtext	= $filter->clean( $row->introtext );			$row->fulltext	= $filter->clean( $row->fulltext );		}		return true;	}	/**	* Function to reset Hit count of an article	*	*/	function resetHits($redirect, $id)	{		global $mainframe;		// Initialize variables		$db	= & JFactory::getDBO();		// Instantiate and load an article table		$row = & JTable::getInstance('content');		$row->Load($id);		$row->hits = 0;		$row->store();		$row->checkin();		$msg = JText::_('Successfully Reset Hit count');		$mainframe->redirect('index.php?option=com_content&sectionid='.$redirect.'&task=edit&id='.$id, $msg);	}	function filterCategory($query, $active = NULL)	{		// Initialize variables		$db	= & JFactory::getDBO();		$categories[] = JHTML::_('select.option', '0', '- '.JText::_('Select Category').' -');		$db->setQuery($query);		$categories = array_merge($categories, $db->loadObjectList());		$category = JHTML::_('select.genericlist',  $categories, 'catid', 'class="inputbox" size="1" onchange="document.adminForm.submit( );"', 'value', 'text', $active);		return $category;	}}

⌨️ 快捷键说明

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