📄 plugin.php
字号:
<?php
/**
* Tag management for XOOPS
*
* @copyright The XOOPS project http://www.xoops.org/
* @license http://www.fsf.org/copyleft/gpl.html GNU public license
* @author Taiwen Jiang (phppp or D.J.) <php_pp@hotmail.com>
* @since 1.00
* @version $Id$
* @package module::tag
*/
// plugin guide:
/*
* Add customized configs, variables or functions
*/
$customConfig = array();
/*
* Due to the difference of word boundary for different languages, delimiters also depend on languages
* You need specify all possbile deimiters here, (",", ";", " ", "|") will be taken if no delimiter is set
*
* Tips:
* For English sites, you can set as array(",", ";", " ", "|")
* For Chinese sites, you can set as array(",", ";", " ", "|", ",")
*
* TODO: there shall be an option for admin to choose a category to store subcategories and articles
*/
$customConfig["tag_delimiter"] = array(",", " ", "|", ",", "|", " ");
$customConfig["limit_tag"] = 100;
$customConfig["font_max"] = 150;
$customConfig["font_min"] = 80;
return $customConfig;
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -