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

📄 luckyspin.php

📁 太烦了
💻 PHP
字号:
<?php/** * class pluginClass * *  Lucky spin (shows a random profile with a "Spin Again!" link) * * */include_once(MODOSDATE_DIR . 'modPlugin.php');class luckySpin extends modPlugin {   /**   * Holds the language phrases   *   * @access private   */   var $lang;   /**   * The name name of the plugin class.   *   * @access private   */   var $plugin_class_name = "luckySpin";   /**   * The text that appears in the admin plugin list   *   * @access private   */   var $display_name ;   /**   * The link text that appears on the user's menu   *   * @access private   */   var $user_menu_text ;   /**   * Appear on users menu (true or false)   *   * @access private   */   var $user_menu_appear = false;   /**   * The link text that appears on the admin's menu   *   * @access private   */   var $admin_menu_text ;   /**   * Appear on users menu (true or false)   *   * @access private   */   var $admin_menu_appear = false;   /**   * Constructor   *   * @return   * @access public   */  function luckySpin( )  {    $this->modPlugin();	$pluginDir = dirname(__FILE__).'/../';	$this->lang = $this->modLoadLang($pluginDir);  	$this->user_menu_text=$this->lang['user_title'];  	$this->admin_menu_text=$this->lang['admin_title'];  	$this->display_name=$this->lang['admin_title'];  } // end of member method pluginClass   /**   *   *   * @return string - html content   * @access public   */  function getRandomProfile($param )  {  } // end of member method pluginClass   /**   * Does the processing to display a user page.  Called from plugin.php   *   * @return array   * @access public   */   function  displayPluginPage() {   }   /**   * WARNING: USER IS NOT VALIDATED HERE.  BE CAREFUL   * Does the processing to display 100% plugin content.  Called from pluginraw.php   *   * @return array   * @access public   */   function  displayPluginContent() {   }  /**   * Returns a random profile   *   * @return array   * @access public   */  function displayLeftCol() {	$sql = 'select snap.userid as userid, count(snap.userid) as snaps_cnt from ! as snap, ! as usr where snap.active=? and ifnull(snap.album_id,0) = 0 and usr.status =? and usr.active=1 and usr.id = snap.userid and ((snap.userid <> ? and ? is not null) or ? is null) group by snap.userid';	if (!isset($_SESSION['luckyspin_id'])) $_SESSION['luckyspin_id'] = '';	$luckySpinRecs=array();	$luckySpinRecs = $GLOBALS['db']->getAll($sql, array(USER_SNAP_TABLE, USER_TABLE, 'Y', 'active',  $_SESSION['luckyspin_id'], $_SESSION['luckyspin_id'], $_SESSION['luckyspin_id'] ) );	/* Select only users who is not shown immediately before and who has photos */	if (count($luckySpinRecs) > 0) {		/* Select random user id from the array */		$usrrec = array_rand($luckySpinRecs);		$opt['id'] = $luckySpinRecs[$usrrec]['userid'];	}	$data = $this->modGetProfile($opt );	$_SESSION['luckyspin_id'] = $data['id'];	$this->modSmartyAssign('lucky', $data);//    $this->modSmartyAssign('spin_again', "?");	$this->modSmartyAssign('lang', $this->modGetLang() );	$this->modSmartyAssign('lang_gender_look', $this->modGetLang('signup_gender_look', $data['lookgender']) );	$this->modSmartyAssign('lang_gender', $this->modGetLang('signup_gender_look', $data['gender']) );	return $this->modSmartyFetch('profilebox.tpl');  }    /**   * Returns the content that will appear in the main content area of the page.  This content will appear after the existing main content.  Designed to be overridden by plugins   *   * @return array   * @access public   */  function displayMain() {  }}?>

⌨️ 快捷键说明

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