亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? controller.php

?? 沒什么功能
?? PHP
?? 第 1 頁 / 共 2 頁
字號:
					$params	=& $menu->getParams($item->id);					// Set Default State Data					$model->setState( 'parameters.menu', $params );				}			}		}		return $model;	}	/**	 * Adds to the stack of model paths in LIFO order.	 *	 * @static	 * @param	string|array The directory (string), or list of directories	 *                       (array) to add.	 * @return	void	 */	function addModelPath( $path )	{		jimport('joomla.application.component.model');		JModel::addIncludePath($path);	}	/**	 * Gets the available tasks in the controller.	 * @access	public	 * @return	array Array[i] of task names.	 * @since	1.5	 */	function getTasks()	{		return $this->_methods;	}	/**	 * Get the last task that is or was to be performed.	 *	 * @access	public	 * @return	 string The task that was or is being performed.	 * @since	1.5	 */	function getTask()	{		return $this->_task;	}	/**	 * Method to get the controller name	 *	 * The dispatcher name by default parsed using the classname, or it can be set	 * by passing a $config['name'] in the class constructor	 *	 * @access	public	 * @return	string The name of the dispatcher	 * @since	1.5	 */	function getName()	{		$name = $this->_name;		if (empty( $name ))		{			$r = null;			if ( !preg_match( '/(.*)Controller/i', get_class( $this ), $r ) ) {				JError::raiseError(500, "JController::getName() : Cannot get or parse class name.");			}			$name = strtolower( $r[1] );		}		return $name;	}	/**	 * Method to get a reference to the current view and load it if necessary.	 *	 * @access	public	 * @param	string	The view name. Optional, defaults to the controller	 * name.	 * @param	string	The view type. Optional.	 * @param	string	The class prefix. Optional.	 * @param	array	Configuration array for view. Optional.	 * @return	object	Reference to the view or an error.	 * @since	1.5	 */	function &getView( $name = '', $type = '', $prefix = '', $config = array() )	{		static $views;		if ( !isset( $views ) ) {			$views = array();		}		if ( empty( $name ) ) {			$name = $this->getName();		}		if ( empty( $prefix ) ) {			$prefix = $this->getName() . 'View';		}		if ( empty( $views[$name] ) )		{			if ( $view = & $this->_createView( $name, $prefix, $type, $config ) ) {				$views[$name] = & $view;			} else {				$result = JError::raiseError(					500, JText::_( 'View not found [name, type, prefix]:' )						. ' ' . $name . ',' . $type . ',' . $prefix				);				return $result;			}		}		return $views[$name];	}	/**	 * Add one or more view paths to the controller's stack, in LIFO order.	 *	 * @static	 * @param	string|array The directory (string), or list of directories	 * (array) to add.	 * @return	void	 */	function addViewPath( $path )	{		$this->_addPath( 'view', $path );	}	/**	 * Register (map) a task to a method in the class.	 *	 * @access	public	 * @param	string	The task.	 * @param	string	The name of the method in the derived class to perform	 *                  for this task.	 * @return	void	 * @since	1.5	 */	function registerTask( $task, $method )	{		if ( in_array( strtolower( $method ), $this->_methods ) ) {			$this->_taskMap[strtolower( $task )] = $method;		}	}	/**	 * Register the default task to perform if a mapping is not found.	 *	 * @access	public	 * @param	string The name of the method in the derived class to perform if	 * a named task is not found.	 * @return	void	 * @since	1.5	 */	function registerDefaultTask( $method )	{		$this->registerTask( '__default', $method );	}	/**	 * Sets the internal message that is passed with a redirect	 *	 * @access	public	 * @param	string	The message	 * @return	string	Previous message	 * @since	1.5	 */	function setMessage( $text )	{		$previous		= $this->_message;		$this->_message = $text;		return $previous;	}	/**	 * Set a URL for browser redirection.	 *	 * @access	public	 * @param	string URL to redirect to.	 * @param	string	Message to display on redirect. Optional, defaults to	 * 			value set internally by controller, if any.	 * @param	string	Message type. Optional, defaults to 'message'.	 * @return	void	 * @since	1.5	 */	function setRedirect( $url, $msg = null, $type = 'message' )	{		$this->_redirect = $url;		if ($msg !== null) {			// controller may have set this directly			$this->_message	= $msg;		}		$this->_messageType	= $type;	}	/**	 * Sets the access control levels.	 *	 * @access	public	 * @param	string The ACO section (eg, the component).	 * @param	string The ACO section value (if using a constant value).	 * @return	void	 * @since	1.5	 */	function setAccessControl( $section, $value = null )	{		$this->_acoSection = $section;		$this->_acoSectionValue = $value;	}	/**	 * Method to load and return a model object.	 *	 * @access	private	 * @param	string  The name of the model.	 * @param	string	Optional model prefix.	 * @param	array	Configuration array for the model. Optional.	 * @return	mixed	Model object on success; otherwise null	 * failure.	 * @since	1.5	 */	function &_createModel( $name, $prefix = '', $config = array())	{		$result = null;		// Clean the model name		$modelName	 = preg_replace( '/[^A-Z0-9_]/i', '', $name );		$classPrefix = preg_replace( '/[^A-Z0-9_]/i', '', $prefix );		$result =& JModel::getInstance($modelName, $classPrefix, $config);		return $result;	}	/**	 * Method to load and return a view object. This method first looks in the	 * current template directory for a match, and failing that uses a default	 * set path to load the view class file.	 *	 * Note the "name, prefix, type" order of parameters, which differs from the	 * "name, type, prefix" order used in related public methods.	 *	 * @access	private	 * @param	string	The name of the view.	 * @param	string	Optional prefix for the view class name.	 * @param	string	The type of view.	 * @param	array	Configuration array for the view. Optional.	 * @return	mixed	View object on success; null or error result on failure.	 * @since	1.5	 */	function &_createView( $name, $prefix = '', $type = '', $config = array() )	{		$result = null;		// Clean the view name		$viewName	 = preg_replace( '/[^A-Z0-9_]/i', '', $name );		$classPrefix = preg_replace( '/[^A-Z0-9_]/i', '', $prefix );		$viewType	 = preg_replace( '/[^A-Z0-9_]/i', '', $type );		// Build the view class name		$viewClass = $classPrefix . $viewName;		if ( !class_exists( $viewClass ) )		{			jimport( 'joomla.filesystem.path' );			$path = JPath::find(				$this->_path['view'],				$this->_createFileName( 'view', array( 'name' => $viewName, 'type' => $viewType) )			);			if ($path) {				require_once $path;				if ( !class_exists( $viewClass ) ) {					$result = JError::raiseError(						500, JText::_( 'View class not found [class, file]:' )						. ' ' . $viewClass . ', ' . $path );					return $result;				}			} else {				return $result;			}		}		$result = new $viewClass($config);		return $result;	}	/**	* Sets an entire array of search paths for resources.	*	* @access	protected	* @param	string	The type of path to set, typically 'view' or 'model'.	* @param	string|array	The new set of search paths. If null or false,	* resets to the current directory only.	*/	function _setPath( $type, $path )	{		// clear out the prior search dirs		$this->_path[$type] = array();		// actually add the user-specified directories		$this->_addPath( $type, $path );	}	/**	* Adds to the search path for templates and resources.	*	* @access	protected	* @param	string The path type (e.g. 'model', 'view'.	* @param	string|array The directory or stream to search.	* @return	void	*/	function _addPath( $type, $path )	{		// just force path to array		settype( $path, 'array' );		// loop through the path directories		foreach ( $path as $dir )		{			// no surrounding spaces allowed!			$dir = trim( $dir );			// add trailing separators as needed			if ( substr( $dir, -1 ) != DIRECTORY_SEPARATOR ) {				// directory				$dir .= DIRECTORY_SEPARATOR;			}			// add to the top of the search dirs			array_unshift( $this->_path[$type], $dir );		}	}	/**	 * Create the filename for a resource.	 *	 * @access	private	 * @param	string	The resource type to create the filename for.	 * @param	array	An associative array of filename information. Optional.	 * @return	string	The filename.	 * @since	1.5	 */	function _createFileName( $type, $parts = array() )	{		$filename = '';		switch ( $type )		{			case 'view':				if ( !empty( $parts['type'] ) ) {					$parts['type'] = '.'.$parts['type'];				}				$filename = strtolower($parts['name']).DS.'view'.$parts['type'].'.php';			break;		}		return $filename;	}}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
五月天婷婷综合| 精品免费一区二区三区| 精品欧美一区二区久久| 欧美无乱码久久久免费午夜一区 | 日韩三级伦理片妻子的秘密按摩| 五月婷婷综合激情| 一区二区三区中文免费| 欧美体内she精视频| 欧美日韩一级二级| 成人三级在线视频| 一区二区三区四区国产精品| 最新日韩在线视频| 91精品国产丝袜白色高跟鞋| 韩国精品主播一区二区在线观看 | 欧美影院一区二区三区| 欧美三级中文字幕在线观看| 欧美午夜宅男影院| 欧美va亚洲va| 18涩涩午夜精品.www| 一区二区三区免费看视频| 婷婷久久综合九色综合绿巨人| 亚洲.国产.中文慕字在线| 国产精品午夜春色av| 欧美日韩精品高清| 成人美女视频在线观看| 99re66热这里只有精品3直播| 亚洲123区在线观看| 精品亚洲aⅴ乱码一区二区三区| 亚洲三级在线观看| 国产日韩精品一区二区浪潮av| 欧美日本国产一区| 国产喂奶挤奶一区二区三区| 欧美久久久久久久久| 精品视频123区在线观看| 2欧美一区二区三区在线观看视频 337p粉嫩大胆噜噜噜噜噜91av | 成人av集中营| 成人一区二区三区在线观看 | 日韩久久久久久| 欧美系列日韩一区| 国产午夜亚洲精品羞羞网站| 亚洲成人第一页| 国产91丝袜在线播放九色| 国产一区二区伦理| 另类欧美日韩国产在线| 日本欧美在线看| 日韩精品一级中文字幕精品视频免费观看 | 麻豆精品一二三| 三级欧美在线一区| 波多野结衣91| 99久久免费精品| 精品国产露脸精彩对白| 久久久久久9999| 久久久精品综合| 丝袜美腿亚洲一区| 92国产精品观看| 久久精品人人做人人爽97| 亚洲韩国一区二区三区| 亚洲123区在线观看| 一本一道波多野结衣一区二区| 成人app网站| 久久久三级国产网站| 蜜桃视频第一区免费观看| 欧美性xxxxxxxx| 一区二区三区精品久久久| 成人性色生活片| 久久奇米777| 国产在线视频一区二区三区| 日韩三级视频中文字幕| 五月婷婷色综合| 欧美日韩五月天| 亚洲国产日日夜夜| 欧洲国内综合视频| 日韩亚洲欧美一区| 亚洲观看高清完整版在线观看| 97se亚洲国产综合自在线| 国产精品高潮久久久久无| 亚洲免费看黄网站| 三级欧美在线一区| 制服丝袜在线91| 国产精品毛片久久久久久久| 国产在线观看一区二区| 欧美大度的电影原声| 裸体一区二区三区| 精品久久久久一区| 国产综合一区二区| 日本一区二区免费在线观看视频| 国产精品资源网站| 欧美日韩精品一区二区| 日韩av网站在线观看| 欧美tk丨vk视频| 懂色av中文字幕一区二区三区| 亚洲国产经典视频| 日韩高清一区二区| 精品久久久久99| av一区二区不卡| 丝袜亚洲精品中文字幕一区| 欧美刺激午夜性久久久久久久| 久久国产成人午夜av影院| 2021国产精品久久精品| 成人综合在线观看| 天天色天天爱天天射综合| 26uuu亚洲综合色| 色综合久久中文字幕综合网| 亚洲成av人片在线观看| 国产日韩视频一区二区三区| 91视频com| 精品日韩在线观看| 成人国产精品免费观看动漫| 亚洲精品成人精品456| 国产剧情一区二区三区| 一区二区三区在线视频播放 | 精品一区二区三区日韩| 国产精品成人免费在线| 欧洲国产伦久久久久久久| 国产在线观看一区二区| 亚洲成av人片一区二区梦乃| 久久久精品欧美丰满| 欧美日韩国产在线播放网站| 国产一区不卡在线| 亚洲成a人v欧美综合天堂下载| 国产日韩亚洲欧美综合| 欧美一区二区精品在线| 色综合天天综合色综合av | 欧美日韩精品三区| 成人免费视频app| 偷拍日韩校园综合在线| 中文字幕av不卡| 欧美电影免费观看高清完整版在线 | 一区二区在线看| 久久九九全国免费| 91精品国产综合久久精品性色| 成人av网站免费观看| 精品一区精品二区高清| 天天综合天天做天天综合| 亚洲视频一区二区在线| 久久精品亚洲麻豆av一区二区| 欧美人牲a欧美精品| 91久久人澡人人添人人爽欧美| 1024成人网色www| 久久网这里都是精品| 日韩欧美电影在线| 日韩免费福利电影在线观看| 欧美日韩中文国产| 欧美日韩电影在线| 欧美日韩视频不卡| 欧美午夜在线一二页| 91欧美一区二区| 99久久久精品免费观看国产蜜| 国产成人av电影免费在线观看| 极品尤物av久久免费看| 麻豆一区二区在线| 精品一区二区三区的国产在线播放| 亚洲成av人影院| 婷婷六月综合亚洲| 午夜精品久久久久久久| 天堂久久一区二区三区| 日本亚洲视频在线| 老司机一区二区| 精品制服美女丁香| 国产一区二区三区视频在线播放| 精品一区二区三区香蕉蜜桃| 国产九色sp调教91| 粉嫩绯色av一区二区在线观看| 成人看片黄a免费看在线| 99精品欧美一区| 欧美丝袜丝交足nylons图片| 欧美日韩www| 欧美成人a视频| 国产精品人妖ts系列视频| 成人欧美一区二区三区| 亚洲一区二区三区四区在线观看 | 狠狠色丁香婷综合久久| 国产九色精品成人porny| av亚洲精华国产精华| 色综合一个色综合| 91精品国产综合久久久蜜臀图片 | 91热门视频在线观看| 欧美网站一区二区| 欧美一级午夜免费电影| 久久综合资源网| 亚洲美女电影在线| 午夜精品久久久久久久蜜桃app| 日产国产欧美视频一区精品| 激情综合色丁香一区二区| 成人免费观看av| 欧美丝袜丝交足nylons图片| 久久蜜臀中文字幕| 亚洲一区二区黄色| 粉嫩一区二区三区在线看| 欧美日韩视频在线第一区| 久久久亚洲高清| 日韩黄色免费网站| 成人av在线电影| 日韩视频在线观看一区二区| 国产精品久久久久7777按摩| 另类小说欧美激情| 岛国av在线一区| 91精品国产综合久久精品图片| 亚洲视频资源在线| 国产自产高清不卡|