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.
 
 
 
 

56 lines
1.3 KiB

<?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$
*/
/**
* 标签云组件
*
* @category typecho
* @package Widget
* @copyright Copyright (c) 2008 Typecho team (http://www.typecho.org)
* @license GNU General Public License 2.0
*/
class Widget_Metas_Tag_Admin extends Widget_Metas_Tag_Cloud
{
/**
* 入口函数
*
* @access public
* @return void
*/
public function execute()
{
$select = $this->select()->where('type = ?', 'tag')->order('mid', Typecho_Db::SORT_DESC);
$this->db->fetchAll($select, array($this, 'push'));
}
/**
* 获取菜单标题
*
* @access public
* @return string
*/
public function getMenuTitle()
{
if (isset($this->request->mid)) {
$tag = $this->db->fetchRow($this->select()
->where('type = ? AND mid = ?', 'tag', $this->request->mid));
if (!empty($tag)) {
return _t('编辑标签 %s', $tag['name']);
}
} else {
return;
}
throw new Typecho_Widget_Exception(_t('标签不存在'), 404);
}
}