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

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

?? user.php

?? 沒什么功能
?? PHP
字號:
<?php/** * @version		$Id: user.php 10707 2008-08-21 09:52:47Z eddieajau $ * @package		Joomla.Framework * @subpackage	User * @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. */// Check to ensure this file is within the rest of the frameworkdefined('JPATH_BASE') or die();jimport( 'joomla.html.parameter');/** * User class.  Handles all application interaction with a user * * @package 	Joomla.Framework * @subpackage	User * @since		1.5 */class JUser extends JObject{	/**	 * Unique id	 * @var int	 */	var $id				= null;	/**	 * The users real name (or nickname)	 * @var string	 */	var $name			= null;	/**	 * The login name	 * @var string	 */	var $username		= null;	/**	 * The email	 * @var string	 */	var $email			= null;	/**	 * MD5 encrypted password	 * @var string	 */	var $password		= null;	/**	 * Clear password, only available when a new password is set for a user	 * @var string	 */	var $password_clear	= '';	/**	 * Description	 * @var string	 */	var $usertype		= null;	/**	 * Description	 * @var int	 */	var $block			= null;	/**	 * Description	 * @var int	 */	var $sendEmail		= null;	/**	 * The group id number	 * @var int	 */	var $gid			= null;	/**	 * Description	 * @var datetime	 */	var $registerDate	= null;	/**	 * Description	 * @var datetime	 */	var $lastvisitDate	= null;	/**	 * Description	 * @var string activation hash	 */	var $activation		= null;	/**	 * Description	 * @var string	 */	var $params			= null;	/**	 * Description	 * @var string integer	 */	var $aid 		= null;	/**	 * Description	 * @var boolean	 */	var $guest     = null;	/**	 * User parameters	 * @var object	 */	var $_params 	= null;	/**	 * Error message	 * @var string	 */	var $_errorMsg	= null;	/**	* Constructor activating the default information of the language	*	* @access 	protected	*/	function __construct($identifier = 0)	{		// Create the user parameters object		$this->_params = new JParameter( '' );		// Load the user if it exists		if (!empty($identifier)) {			$this->load($identifier);		}		else		{			//initialise			$this->id        = 0;			$this->gid       = 0;			$this->sendEmail = 0;			$this->aid       = 0;			$this->guest     = 1;		}	}	/**	 * Returns a reference to the global User object, only creating it if it	 * doesn't already exist.	 *	 * This method must be invoked as:	 * 		<pre>  $user =& JUser::getInstance($id);</pre>	 *	 * @access 	public	 * @param 	int 	$id 	The user to load - Can be an integer or string - If string, it is converted to ID automatically.	 * @return 	JUser  			The User object.	 * @since 	1.5	 */	function &getInstance($id = 0)	{		static $instances;		if (!isset ($instances)) {			$instances = array ();		}		// Find the user id		if(!is_numeric($id))		{			jimport('joomla.user.helper');			if (!$id = JUserHelper::getUserId($id)) {				JError::raiseWarning( 'SOME_ERROR_CODE', 'JUser::_load: User '.$id.' does not exist' );				$retval = false;				return $retval;			}		}		if (empty($instances[$id])) {			$user = new JUser($id);			$instances[$id] = $user;		}		return $instances[$id];	}	/**	 * Method to get a parameter value	 *	 * @access 	public	 * @param 	string 	$key 		Parameter key	 * @param 	mixed	$default	Parameter default value	 * @return	mixed				The value or the default if it did not exist	 * @since	1.5	 */	function getParam( $key, $default = null )	{		return $this->_params->get( $key, $default );	}	/**	 * Method to set a parameter	 *	 * @access 	public	 * @param 	string 	$key 	Parameter key	 * @param 	mixed	$value	Parameter value	 * @return	mixed			Set parameter value	 * @since	1.5	 */	function setParam( $key, $value )	{		return $this->_params->set( $key, $value );	}	/**	 * Method to set a default parameter if it does not exist	 *	 * @access 	public	 * @param 	string 	$key 	Parameter key	 * @param 	mixed	$value	Parameter value	 * @return	mixed			Set parameter value	 * @since	1.5	 */	function defParam( $key, $value )	{		return $this->_params->def( $key, $value );	}	/**	 * Method to check JUser object authorization against an access control	 * object and optionally an access extension object	 *	 * @access 	public	 * @param	string	$acoSection	The ACO section value	 * @param	string	$aco		The ACO value	 * @param	string	$axoSection	The AXO section value	[optional]	 * @param	string	$axo		The AXO value			[optional]	 * @return	boolean	True if authorized	 * @since	1.5	 */	function authorize( $acoSection, $aco, $axoSection = null, $axo = null )	{		// the native calls (Check Mode 1) work on the user id, not the user type		$acl	= & JFactory::getACL();		$value	= $acl->getCheckMode() == 1 ? $this->id : $this->usertype;		return $acl->acl_check( $acoSection, $aco,	'users', $value, $axoSection, $axo );	}	/**	 * Pass through method to the table for setting the last visit date	 *	 * @access 	public	 * @param	int		$timestamp	The timestamp, defaults to 'now'	 * @return	boolean	True on success	 * @since	1.5	 */	function setLastVisit($timestamp=null)	{		// Create the user table object		$table 	=& $this->getTable();		$table->load($this->id);		return $table->setLastVisit($timestamp);	}	/**	 * Method to get the user parameters	 *	 * This function tries to load an xml file based on the users usertype. The filename of the xml	 * file is the same as the usertype. The functionals has a static variable to store the parameters	 * setup file base path. You can call this function statically to set the base path if needed.	 *	 * @access 	public	 * @param	boolean	If true, loads the parameters setup file. Default is false.	 * @param	path	Set the parameters setup file base path to be used to load the user parameters.	 * @return	object	The user parameters object	 * @since	1.5	 */	function &getParameters($loadsetupfile = false, $path = null)	{		static $parampath;		// Set a custom parampath if defined		if( isset($path) ) {			$parampath = $path;		}		// Set the default parampath if not set already		if( !isset($parampath) ) {			$parampath = JPATH_ADMINISTRATOR.DS.'components'.DS.'com_users'.DS.'models';		}		if($loadsetupfile)		{			$type = str_replace(' ', '_', strtolower($this->usertype));			$file = $parampath.DS.$type.'.xml';			if(!file_exists($file)) {				$file = $parampath.DS.'user.xml';			}			$this->_params->loadSetupFile($file);		}		return $this->_params;	}	/**	 * Method to get the user parameters	 *	 * @access 	public	 * @param	object	The user parameters object	 * @since	1.5	 */	function setParameters($params )	{		$this->_params = $params;	}	/**	 * Method to get the user table object	 *	 * This function uses a static variable to store the table name of the user table to	 * it instantiates. You can call this function statically to set the table name if	 * needed.	 *	 * @access 	public	 * @param	string	The user table name to be used	 * @param	string	The user table prefix to be used	 * @return	object	The user table object	 * @since	1.5	 */	function &getTable( $type = null, $prefix = 'JTable' )	{		static $tabletype;		//Set the default tabletype;		if(!isset($tabletype)) {			$tabletype['name'] 		= 'user';			$tabletype['prefix']	= 'JTable';		}		//Set a custom table type is defined		if(isset($type)) {			$tabletype['name'] 		= $type;			$tabletype['prefix']	= $prefix;		}		// Create the user table object		$table 	=& JTable::getInstance( $tabletype['name'], $tabletype['prefix'] );		return $table;	}	/**	 * Method to bind an associative array of data to a user object	 *	 * @access 	public	 * @param 	array 	$array 	The associative array to bind to the object	 * @return 	boolean 		True on success	 * @since 1.5	 */	function bind(& $array)	{		jimport('joomla.user.helper');		// Lets check to see if the user is new or not		if (empty($this->id))		{			// Check the password and create the crypted password			if (empty($array['password'])) {				$array['password']  = JUserHelper::genRandomPassword();				$array['password2'] = $array['password'];			}			if ($array['password'] != $array['password2']) {					$this->setError( JText::_( 'PASSWORD DO NOT MATCH.' ) );					return false;			}			$this->password_clear = JArrayHelper::getValue( $array, 'password', '', 'string' );			$salt  = JUserHelper::genRandomPassword(32);			$crypt = JUserHelper::getCryptedPassword($array['password'], $salt);			$array['password'] = $crypt.':'.$salt;			// Set the registration timestamp			$now =& JFactory::getDate();			$this->set( 'registerDate', $now->toMySQL() );			// Check that username is not greater than 25 characters			$username = $this->get( 'username' );			if ( strlen($username) > 150 )			{				$username = substr( $username, 0, 150 );				$this->set( 'username', $username );			}			// Check that password is not greater than 50 characters			$password = $this->get( 'password' );			if ( strlen($password) > 100 )			{				$password = substr( $password, 0, 100 );				$this->set( 'password', $password );			}		}		else		{			// Updating an existing user			if (!empty($array['password']))			{				if ( $array['password'] != $array['password2'] ) {					$this->setError( JText::_( 'PASSWORD DO NOT MATCH.' ) );					return false;				}				$this->password_clear = JArrayHelper::getValue( $array, 'password', '', 'string' );				$salt = JUserHelper::genRandomPassword(32);				$crypt = JUserHelper::getCryptedPassword($array['password'], $salt);				$array['password'] = $crypt.':'.$salt;			}			else			{				$array['password'] = $this->password;			}		}		// TODO: this will be deprecated as of the ACL implementation		$db =& JFactory::getDBO();		$gid = array_key_exists('gid', $array ) ? $array['gid'] : $this->get('gid');		$query = 'SELECT name'		. ' FROM #__core_acl_aro_groups'		. ' WHERE id = ' . (int) $gid		;		$db->setQuery( $query );		$this->set( 'usertype', $db->loadResult());		if ( array_key_exists('params', $array) )		{			$params	= '';			$this->_params->bind($array['params']);			if ( is_array($array['params']) ) {				$params	= $this->_params->toString();			} else {				$params = $array['params'];			}			$this->params = $params;		}		// Bind the array		if (!$this->setProperties($array)) {			$this->setError("Unable to bind array to user object");			return false;		}		// Make sure its an integer		$this->id = (int) $this->id;		return true;	}	/**	 * Method to save the JUser object to the database	 *	 * @access 	public	 * @param 	boolean $updateOnly Save the object only if not a new user	 * @return 	boolean 			True on success	 * @since 1.5	 */	function save( $updateOnly = false )	{		// Create the user table object		$table 	=& $this->getTable();		$this->params = $this->_params->toString();		$table->bind($this->getProperties());		// Check and store the object.		if (!$table->check()) {			$this->setError($table->getError());			return false;		}		// If user is made a Super Admin group and user is NOT a Super Admin		$my =& JFactory::getUser();		if ( $this->get('gid') == 25 && $my->get('gid') != 25 )		{			// disallow creation of Super Admin by non Super Admin users			$this->setError(JText::_( 'WARNSUPERADMINCREATE' ));			return false;		}		// If user is made an Admin group and user is NOT a Super Admin		if ($this->get('gid') == 24 && !($my->get('gid') == 25 || ($this->get('id') == $my->id && $my->get('gid') == 24)))		{			// disallow creation of Admin by non Super Admin users			$this->setError(JText::_( 'WARNSUPERADMINCREATE' ));			return false;		}		//are we creating a new user		$isnew = !$this->id;		// If we aren't allowed to create new users return		if ($isnew && $updateOnly) {			return true;		}		// Get the old user		$old = new JUser($this->id);		// Fire the onBeforeStoreUser event.		JPluginHelper::importPlugin( 'user' );		$dispatcher =& JDispatcher::getInstance();		$dispatcher->trigger( 'onBeforeStoreUser', array( $old->getProperties(), $isnew ) );		//Store the user data in the database		if (!$result = $table->store()) {			$this->setError($table->getError());		}		// Set the id for the JUser object in case we created a new user.		if (empty($this->id)) {			$this->id = $table->get( 'id' );		}		// Fire the onAftereStoreUser event		$dispatcher->trigger( 'onAfterStoreUser', array( $this->getProperties(), $isnew, $result, $this->getError() ) );		return $result;	}	/**	 * Method to delete the JUser object from the database	 *	 * @access 	public	 * @param 	boolean $updateOnly Save the object only if not a new user	 * @return 	boolean 			True on success	 * @since 1.5	 */	function delete( )	{		JPluginHelper::importPlugin( 'user' );		//trigger the onBeforeDeleteUser event		$dispatcher =& JDispatcher::getInstance();		$dispatcher->trigger( 'onBeforeDeleteUser', array( $this->getProperties() ) );		// Create the user table object		$table 	=& $this->getTable();		$result = false;		if (!$result = $table->delete($this->id)) {			$this->setError($table->getError());		}		//trigger the onAfterDeleteUser event		$dispatcher->trigger( 'onAfterDeleteUser', array( $this->getProperties(), $result, $this->getError()) );		return $result;	}	/**	 * Method to load a JUser object by user id number	 *	 * @access 	public	 * @param 	mixed 	$identifier The user id of the user to load	 * @param 	string 	$path 		Path to a parameters xml file	 * @return 	boolean 			True on success	 * @since 1.5	 */	function load($id)	{		// Create the user table object		$table 	=& $this->getTable();		 // Load the JUserModel object based on the user id or throw a warning.		 if(!$table->load($id)) {			JError::raiseWarning( 'SOME_ERROR_CODE', 'JUser::_load: Unable to load user with id: '.$id );			return false;		}		/*		 * Set the user parameters using the default xml file.  We might want to		 * extend this in the future to allow for the ability to have custom		 * user parameters, but for right now we'll leave it how it is.		 */		$this->_params->loadINI($table->params);		// Assuming all is well at this point lets bind the data		$this->setProperties($table->getProperties());		return true;	}}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲国产一区二区视频| 99精品黄色片免费大全| 日产精品久久久久久久性色| 亚洲福利视频导航| 五月综合激情日本mⅴ| 亚洲va国产va欧美va观看| 一区二区高清在线| 亚洲午夜av在线| 性久久久久久久久久久久| 午夜精品一区二区三区免费视频| 亚洲一区二区欧美| 午夜国产不卡在线观看视频| 午夜伊人狠狠久久| 麻豆国产精品视频| 国产成人在线免费观看| a美女胸又www黄视频久久| 97久久精品人人做人人爽50路| 91色综合久久久久婷婷| 99精品欧美一区二区三区小说 | 亚洲男同性视频| 一区二区高清免费观看影视大全| 亚洲综合色成人| 麻豆成人久久精品二区三区红 | 99久久久精品| 欧美在线观看视频一区二区三区| 欧美系列日韩一区| 日韩久久久久久| 国产精品丝袜一区| 亚洲一区成人在线| 国内精品第一页| 91视频精品在这里| 4438x亚洲最大成人网| 国产欧美综合在线观看第十页| 亚洲欧洲制服丝袜| 蜜臀av亚洲一区中文字幕| 成人网在线播放| 欧美日韩一区二区三区视频| 精品国产麻豆免费人成网站| 国产精品午夜在线| 日本成人中文字幕| 成人一区二区三区中文字幕| 欧美日韩视频在线观看一区二区三区 | 99久久综合狠狠综合久久| 在线日韩av片| 久久亚洲私人国产精品va媚药| 成人免费一区二区三区视频 | 不卡大黄网站免费看| 欧美另类一区二区三区| 国产网站一区二区| 亚洲国产一二三| 国产jizzjizz一区二区| 欧美三级视频在线| 欧美经典一区二区三区| 午夜精品123| 91网站黄www| 精品国产91亚洲一区二区三区婷婷| 成人免费在线播放视频| 极品少妇一区二区三区精品视频 | 日韩亚洲欧美在线| 亚洲精品综合在线| 国产成人在线观看| 91精品欧美一区二区三区综合在| 18涩涩午夜精品.www| 国产一区二区免费在线| 欧美日韩精品是欧美日韩精品| 欧美国产日本视频| 麻豆精品视频在线观看免费| 欧美性色综合网| 亚洲色大成网站www久久九九| 久久电影国产免费久久电影| 日本电影亚洲天堂一区| 国产精品美女一区二区在线观看| 美美哒免费高清在线观看视频一区二区 | 天天亚洲美女在线视频| 99久久免费精品| 欧美国产日韩a欧美在线观看| 蜜桃久久久久久| 制服丝袜亚洲播放| 伊人开心综合网| 成人黄页毛片网站| 日本一区二区三区在线不卡| 理论电影国产精品| 欧美一区二区三区四区久久| 亚洲小少妇裸体bbw| 色女孩综合影院| 成人欧美一区二区三区| 成人一区二区三区视频在线观看 | 欧美国产日韩亚洲一区| 国产一区二区毛片| www久久精品| 老司机一区二区| 日韩免费观看2025年上映的电影| 日韩激情中文字幕| 欧美日本视频在线| 日韩电影在线观看电影| 欧美日韩国产美| 亚洲成av人片一区二区三区| 日本韩国精品一区二区在线观看| 亚洲精品欧美激情| 在线免费观看视频一区| 一区二区视频免费在线观看| 色噜噜夜夜夜综合网| 亚洲综合在线电影| 欧美日韩一卡二卡| 日本人妖一区二区| 精品久久久久99| 国产一区二区伦理片| 国产精品污www在线观看| 成人午夜激情片| 亚洲男人的天堂av| 欧美三级日韩三级| 日韩精品成人一区二区在线| 日韩网站在线看片你懂的| 日本伊人色综合网| 久久噜噜亚洲综合| 丁香另类激情小说| 亚洲精品精品亚洲| 欧美日韩在线免费视频| 麻豆中文一区二区| 久久久久久麻豆| 91丨porny丨国产入口| 亚洲狠狠爱一区二区三区| 欧美丰满一区二区免费视频| 久久黄色级2电影| 欧美激情中文不卡| 欧美亚洲另类激情小说| 免费在线欧美视频| 国产视频一区二区在线观看| 99精品偷自拍| 手机精品视频在线观看| 亚洲精品一区二区三区精华液| 国产999精品久久久久久绿帽| 亚洲欧美电影院| 日韩欧美国产小视频| 成人免费视频一区二区| 一区二区三区四区在线免费观看 | 国产精品久久久一区麻豆最新章节| 91小视频在线观看| 天天色图综合网| 久久久www成人免费无遮挡大片 | 中文字幕精品在线不卡| 欧美日韩电影在线| 丁香另类激情小说| 五月天久久比比资源色| 国产亚洲欧美日韩日本| 在线亚洲免费视频| 国产在线一区二区综合免费视频| 日韩一区有码在线| 日韩一二三四区| 91视频观看免费| 国产在线麻豆精品观看| 亚洲最色的网站| 国产三区在线成人av| 91精彩视频在线| 国产+成+人+亚洲欧洲自线| 亚洲电影一级黄| 国产视频在线观看一区二区三区 | 欧美草草影院在线视频| 色综合天天综合在线视频| 麻豆91小视频| 一区二区在线观看视频| 久久一夜天堂av一区二区三区| 色天使色偷偷av一区二区 | 久久在线观看免费| 欧美日韩国产系列| 97se亚洲国产综合自在线| 久久99精品国产麻豆婷婷洗澡| 亚洲精品国产一区二区精华液 | 日韩在线卡一卡二| 亚洲精品亚洲人成人网在线播放| 欧美xxxxx牲另类人与| 欧美日韩精品高清| 99国产精品久久久久久久久久久 | 2017欧美狠狠色| 91精品婷婷国产综合久久竹菊| 99久久精品国产精品久久| 九九**精品视频免费播放| 天堂午夜影视日韩欧美一区二区| 亚洲欧洲精品一区二区三区 | 中文成人av在线| 久久嫩草精品久久久久| 91精品国产全国免费观看| 欧美日韩一区高清| 91美女在线观看| 波多野结衣中文字幕一区二区三区| 久久99精品久久久| 久久99精品久久久久久动态图 | 国产成人精品免费视频网站| 奇米综合一区二区三区精品视频| 亚洲国产精品久久一线不卡| 亚洲人成7777| 亚洲天堂a在线| 亚洲视频狠狠干| 国产精品午夜在线观看| 国产欧美一区二区三区网站| 久久久91精品国产一区二区精品| 日韩精品一区二区三区视频在线观看 | 午夜视频一区二区| 亚洲成人免费看| 日韩av一区二区三区四区|