mirror of
https://github.com/e107inc/e107.git
synced 2025-08-01 20:30:39 +02:00
jayya nd _blank js manager related temporary fixes - awaiting theme.xml additions
This commit is contained in:
@@ -5,10 +5,11 @@ define('STANDARDS_MODE', TRUE);
|
|||||||
|
|
||||||
include_lan(e_THEME."_blank/languages/".e_LANGUAGE.".php");
|
include_lan(e_THEME."_blank/languages/".e_LANGUAGE.".php");
|
||||||
|
|
||||||
$THEME_CORE_JSLIB = array(
|
//temporary fixed - awaiting theme.xml addition
|
||||||
'jslib/core/decorate.js' => 'all',
|
e107::getJs()->requireCoreLib(array(
|
||||||
'jslib/core/tabs.js' => 'admin'
|
'core/decorate.js' => 2,
|
||||||
);
|
'core/tabs.js' => 2
|
||||||
|
));
|
||||||
|
|
||||||
$register_sc[]='FS_ADMIN_ALT_NAV';
|
$register_sc[]='FS_ADMIN_ALT_NAV';
|
||||||
$no_core_css = TRUE;
|
$no_core_css = TRUE;
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- $Id: theme.xml,v 1.17 2009-08-31 14:37:24 e107coders Exp $ -->
|
<!-- $Id: theme.xml,v 1.18 2009-09-29 17:42:23 secretr Exp $ -->
|
||||||
<e107Theme name="e107.v4" version="3.0" date="2003-06-11" compatibility="0.8" releaseUrl='http://www.e107.org/themeupdate.php'>
|
<e107Theme name="e107.v4" version="3.0" date="2003-06-11" compatibility="0.8" releaseUrl='http://www.e107.org/themeupdate.php'>
|
||||||
<author name ="Steve Dunstan [jalist]" email="jalist@e107.org" url="http://e107.org" />
|
<author name ="Steve Dunstan [jalist]" email="jalist@e107.org" url="http://e107.org" />
|
||||||
<description>Classic e107 theme</description>
|
<description>Classic e107 theme</description>
|
||||||
@@ -11,7 +11,7 @@
|
|||||||
</plugins>
|
</plugins>
|
||||||
<layouts>
|
<layouts>
|
||||||
<layout name='3_column' title='3 Columns' preview='preview.jpg' previewFull='preview_full.png' default='true' >
|
<layout name='3_column' title='3 Columns' preview='preview.jpg' previewFull='preview_full.png' default='true' >
|
||||||
<menuPresets>
|
<menuPresets>
|
||||||
<area id='1' >
|
<area id='1' >
|
||||||
<menu name='login' />
|
<menu name='login' />
|
||||||
<menu name='compliance' />
|
<menu name='compliance' />
|
||||||
@@ -25,7 +25,7 @@
|
|||||||
</menuPresets>
|
</menuPresets>
|
||||||
</layout>
|
</layout>
|
||||||
<layout name='2_column' title='2 Columns' preview='preview.jpg' previewFull='preview_full.png' >
|
<layout name='2_column' title='2 Columns' preview='preview.jpg' previewFull='preview_full.png' >
|
||||||
<menuPresets>
|
<menuPresets>
|
||||||
<area id='1' >
|
<area id='1' >
|
||||||
<menu name='login' />
|
<menu name='login' />
|
||||||
<menu name='online' />
|
<menu name='online' />
|
||||||
|
@@ -3,7 +3,7 @@
|
|||||||
+ ----------------------------------------------------------------------------+
|
+ ----------------------------------------------------------------------------+
|
||||||
| e107 website system
|
| e107 website system
|
||||||
|
|
|
|
||||||
| <EFBFBD>Steve Dunstan 2001-2002
|
| Steve Dunstan 2001-2002
|
||||||
| http://e107.org
|
| http://e107.org
|
||||||
| jalist@e107.org
|
| jalist@e107.org
|
||||||
|
|
|
|
||||||
@@ -11,9 +11,9 @@
|
|||||||
| GNU General Public License (http://gnu.org).
|
| GNU General Public License (http://gnu.org).
|
||||||
|
|
|
|
||||||
| $Source: /cvs_backup/e107_0.8/e107_themes/jayya/admin_theme.php,v $
|
| $Source: /cvs_backup/e107_0.8/e107_themes/jayya/admin_theme.php,v $
|
||||||
| $Revision: 1.2 $
|
| $Revision: 1.3 $
|
||||||
| $Date: 2009-07-19 19:42:13 $
|
| $Date: 2009-09-29 17:42:23 $
|
||||||
| $Author: marj_nl_fr $
|
| $Author: secretr $
|
||||||
+----------------------------------------------------------------------------+
|
+----------------------------------------------------------------------------+
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -41,13 +41,11 @@ define("IMODE", "lite");
|
|||||||
// [dont render core style sheet link]
|
// [dont render core style sheet link]
|
||||||
$no_core_css = TRUE;
|
$no_core_css = TRUE;
|
||||||
|
|
||||||
/**
|
//temporary fixed - awaiting theme.xml addition
|
||||||
* JSLIB instructions (could be chaged in the near future)
|
e107::getJs()->requireCoreLib(array(
|
||||||
*/
|
'core/decorate.js' => 2,
|
||||||
$THEME_CORE_JSLIB = array(
|
'core/tabs.js' => 2
|
||||||
'jslib/core/decorate.js' => 'all',
|
));
|
||||||
'jslib/core/tabs.js' => 'admin'
|
|
||||||
);
|
|
||||||
|
|
||||||
function theme_head()
|
function theme_head()
|
||||||
{
|
{
|
||||||
|
@@ -9,18 +9,22 @@
|
|||||||
* Default Header
|
* Default Header
|
||||||
*
|
*
|
||||||
* $Source: /cvs_backup/e107_0.8/e107_themes/templates/header_default.php,v $
|
* $Source: /cvs_backup/e107_0.8/e107_themes/templates/header_default.php,v $
|
||||||
* $Revision: 1.40 $
|
* $Revision: 1.41 $
|
||||||
* $Date: 2009-09-12 19:27:24 $
|
* $Date: 2009-09-29 17:42:22 $
|
||||||
* $Author: e107coders $
|
* $Author: secretr $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!defined('e107_INIT')) { exit; }
|
if (!defined('e107_INIT')) { exit; }
|
||||||
if(!defined('USER_AREA'))
|
if(!defined('USER_AREA'))
|
||||||
{
|
{
|
||||||
//overlod is now possible, prevent warnings
|
//overload is now possible, prevent warnings
|
||||||
define('USER_AREA',TRUE);
|
define('USER_AREA',TRUE);
|
||||||
}
|
}
|
||||||
define('ADMIN_AREA',FALSE);
|
define('ADMIN_AREA',FALSE);
|
||||||
|
|
||||||
|
// Header included notification
|
||||||
|
define('HEADER_INIT', TRUE);
|
||||||
|
|
||||||
$e107 = e107::getInstance();
|
$e107 = e107::getInstance();
|
||||||
$e107->sql->db_Mark_Time('(Header Top)');
|
$e107->sql->db_Mark_Time('(Header Top)');
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user