1
0
mirror of https://github.com/e107inc/e107.git synced 2025-03-14 01:19:44 +01:00

jayya nd _blank js manager related temporary fixes - awaiting theme.xml additions

This commit is contained in:
secretr 2009-09-29 17:42:23 +00:00
parent 88d969fab3
commit f196470f49
4 changed files with 25 additions and 22 deletions

View File

@ -5,10 +5,11 @@ define('STANDARDS_MODE', TRUE);
include_lan(e_THEME."_blank/languages/".e_LANGUAGE.".php");
$THEME_CORE_JSLIB = array(
'jslib/core/decorate.js' => 'all',
'jslib/core/tabs.js' => 'admin'
);
//temporary fixed - awaiting theme.xml addition
e107::getJs()->requireCoreLib(array(
'core/decorate.js' => 2,
'core/tabs.js' => 2
));
$register_sc[]='FS_ADMIN_ALT_NAV';
$no_core_css = TRUE;

View File

@ -1,5 +1,5 @@
<?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'>
<author name ="Steve Dunstan [jalist]" email="jalist@e107.org" url="http://e107.org" />
<description>Classic e107 theme</description>
@ -11,7 +11,7 @@
</plugins>
<layouts>
<layout name='3_column' title='3 Columns' preview='preview.jpg' previewFull='preview_full.png' default='true' >
<menuPresets>
<menuPresets>
<area id='1' >
<menu name='login' />
<menu name='compliance' />
@ -25,7 +25,7 @@
</menuPresets>
</layout>
<layout name='2_column' title='2 Columns' preview='preview.jpg' previewFull='preview_full.png' >
<menuPresets>
<menuPresets>
<area id='1' >
<menu name='login' />
<menu name='online' />

View File

@ -3,7 +3,7 @@
+ ----------------------------------------------------------------------------+
| e107 website system
|
| ©Steve Dunstan 2001-2002
| Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
@ -11,9 +11,9 @@
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_themes/jayya/admin_theme.php,v $
| $Revision: 1.2 $
| $Date: 2009-07-19 19:42:13 $
| $Author: marj_nl_fr $
| $Revision: 1.3 $
| $Date: 2009-09-29 17:42:23 $
| $Author: secretr $
+----------------------------------------------------------------------------+
*/
@ -41,13 +41,11 @@ define("IMODE", "lite");
// [dont render core style sheet link]
$no_core_css = TRUE;
/**
* JSLIB instructions (could be chaged in the near future)
*/
$THEME_CORE_JSLIB = array(
'jslib/core/decorate.js' => 'all',
'jslib/core/tabs.js' => 'admin'
);
//temporary fixed - awaiting theme.xml addition
e107::getJs()->requireCoreLib(array(
'core/decorate.js' => 2,
'core/tabs.js' => 2
));
function theme_head()
{

View File

@ -9,18 +9,22 @@
* Default Header
*
* $Source: /cvs_backup/e107_0.8/e107_themes/templates/header_default.php,v $
* $Revision: 1.40 $
* $Date: 2009-09-12 19:27:24 $
* $Author: e107coders $
* $Revision: 1.41 $
* $Date: 2009-09-29 17:42:22 $
* $Author: secretr $
*/
if (!defined('e107_INIT')) { exit; }
if(!defined('USER_AREA'))
{
//overlod is now possible, prevent warnings
//overload is now possible, prevent warnings
define('USER_AREA',TRUE);
}
define('ADMIN_AREA',FALSE);
// Header included notification
define('HEADER_INIT', TRUE);
$e107 = e107::getInstance();
$e107->sql->db_Mark_Time('(Header Top)');