You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

37 lines
850 B

<?php
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
/**
* 相关内容
*
* @category typecho
* @package Widget
* @copyright Copyright (c) 2008 Typecho team (http://www.typecho.org)
* @license GNU General Public License 2.0
* @version $Id$
*/
/**
* 相关内容组件(根据标签关联)
*
* @author qining
* @category typecho
* @package Widget
* @copyright Copyright (c) 2008 Typecho team (http://www.typecho.org)
* @license GNU General Public License 2.0
*/
class Widget_Users_Author extends Widget_Abstract_Users
{
/**
* 执行函数,初始化数据
*
* @access public
* @return void
*/
public function execute()
{
if ($this->parameter->uid) {
$this->db->fetchRow($this->select()
->where('uid = ?', $this->parameter->uid), array($this, 'push'));
}
}
}