mirror of
https://github.com/e107inc/e107.git
synced 2025-02-24 16:52:43 +01:00
39 lines
1.0 KiB
PHP
39 lines
1.0 KiB
PHP
<?php
|
|
/*
|
|
+ ----------------------------------------------------------------------------+
|
|
| e107 website system
|
|
|
|
|
| ©Steve Dunstan 2001-2002
|
|
| http://e107.org
|
|
| jalist@e107.org
|
|
|
|
|
| Released under the terms and conditions of the
|
|
| GNU General Public License (http://gnu.org).
|
|
|
|
|
| $Source: /cvs_backup/e107_0.8/e107_files/shortcode/batch/sitedown_shortcodes.php,v $
|
|
| $Revision: 1.1.1.1 $
|
|
| $Date: 2006-12-02 04:33:41 $
|
|
| $Author: mcfly_e107 $
|
|
+----------------------------------------------------------------------------+
|
|
*/
|
|
if (!defined('e107_INIT')) { exit; }
|
|
include_once(e_HANDLER.'shortcode_handler.php');
|
|
$sitedown_shortcodes = $tp -> e_sc -> parse_scbatch(__FILE__);
|
|
/*
|
|
|
|
SC_BEGIN SITEDOWN_TABLE_MAINTAINANCETEXT
|
|
global $pref,$tp;
|
|
if($pref['maintainance_text']) {
|
|
return $tp->toHTML($pref['maintainance_text'], TRUE, 'parse_sc', 'admin');
|
|
} else {
|
|
return "<b>- ".SITENAME." ".LAN_SITEDOWN_00." -</b><br /><br />".LAN_SITEDOWN_01 ;
|
|
}
|
|
SC_END
|
|
|
|
|
|
SC_BEGIN SITEDOWN_TABLE_PAGENAME
|
|
return PAGE_NAME;
|
|
SC_END
|
|
|
|
*/
|
|
?>
|