OSDN Git Service

初回コミット(v2.6.17.1)
[magic3/magic3.git] / widgets / wiki_main / include / plugin / version.inc.php
1 <?php
2 /**
3  * versionプラグイン
4  *
5  * 機能:PukiWikiのバージョンを表示する。
6  *
7  * PHP versions 5
8  *
9  * LICENSE: This source file is licensed under the terms of the GNU General Public License.
10  *
11  * @package    Magic3 Framework
12  * @author     平田直毅(Naoki Hirata) <naoki@aplo.co.jp>
13  * @copyright  Copyright 2006-2008 Magic3 Project.
14  * @license    http://www.gnu.org/copyleft/gpl.html  GPL License
15  * @version    SVN: $Id: version.inc.php 1098 2008-10-22 11:43:09Z fishbone $
16  * @link       http://www.magic3.org
17  */
18 function plugin_version_convert()
19 {
20         if (PKWK_SAFE_MODE) return ''; // Show nothing
21
22         return '<p>' . S_VERSION . '</p>';
23 }
24
25 function plugin_version_inline()
26 {
27         if (PKWK_SAFE_MODE) return ''; // Show nothing
28
29         return S_VERSION;
30 }
31 ?>