2012-06-18 17:04:35 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class OC_TemplateLayout extends OC_Template {
|
2012-09-07 17:22:01 +04:00
|
|
|
public function __construct( $renderas ) {
|
2012-06-18 17:04:35 +04:00
|
|
|
// Decide which page we show
|
2012-06-21 23:19:39 +04:00
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
if( $renderas == 'user' ) {
|
2012-06-18 17:04:35 +04:00
|
|
|
parent::__construct( 'core', 'layout.user' );
|
2012-11-04 14:10:46 +04:00
|
|
|
if(in_array(OC_APP::getCurrentApp(), array('settings','admin', 'help'))!==false) {
|
|
|
|
$this->assign('bodyid', 'body-settings', false);
|
2012-06-18 17:04:35 +04:00
|
|
|
}else{
|
2012-11-04 14:10:46 +04:00
|
|
|
$this->assign('bodyid', 'body-user', false);
|
2012-06-18 17:04:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add navigation entry
|
2013-02-07 21:07:27 +04:00
|
|
|
$this->assign( 'application', '', false );
|
2012-06-18 17:04:35 +04:00
|
|
|
$navigation = OC_App::getNavigation();
|
|
|
|
$this->assign( 'navigation', $navigation, false);
|
|
|
|
$this->assign( 'settingsnavigation', OC_App::getSettingsNavigation(), false);
|
|
|
|
foreach($navigation as $entry) {
|
|
|
|
if ($entry['active']) {
|
|
|
|
$this->assign( 'application', $entry['name'], false );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-02-07 21:07:27 +04:00
|
|
|
$user_displayname = OC_User::getDisplayName();
|
|
|
|
$this->assign( 'user_displayname', $user_displayname );
|
2012-08-29 19:54:31 +04:00
|
|
|
} else if ($renderas == 'guest') {
|
|
|
|
parent::__construct('core', 'layout.guest');
|
|
|
|
} else {
|
|
|
|
parent::__construct('core', 'layout.base');
|
2012-06-18 17:04:35 +04:00
|
|
|
}
|
2012-06-18 17:35:04 +04:00
|
|
|
// Add the js files
|
|
|
|
$jsfiles = self::findJavascriptFiles(OC_Util::$scripts);
|
2012-06-18 17:04:35 +04:00
|
|
|
$this->assign('jsfiles', array(), false);
|
2013-02-07 11:09:53 +04:00
|
|
|
if (OC_Config::getValue('installed', false)) {
|
|
|
|
$this->append( 'jsfiles', OC_Helper::linkToRoute('js_config'));
|
|
|
|
}
|
2012-09-07 18:42:46 +04:00
|
|
|
if (!empty(OC_Util::$core_scripts)) {
|
2012-10-17 12:52:16 +04:00
|
|
|
$this->append( 'jsfiles', OC_Helper::linkToRemoteBase('core.js', false));
|
2012-09-07 18:42:46 +04:00
|
|
|
}
|
2012-06-18 17:04:35 +04:00
|
|
|
foreach($jsfiles as $info) {
|
|
|
|
$root = $info[0];
|
|
|
|
$web = $info[1];
|
|
|
|
$file = $info[2];
|
|
|
|
$this->append( 'jsfiles', $web.'/'.$file);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the css files
|
2012-06-18 17:35:04 +04:00
|
|
|
$cssfiles = self::findStylesheetFiles(OC_Util::$styles);
|
2012-06-18 17:04:35 +04:00
|
|
|
$this->assign('cssfiles', array());
|
2012-09-07 18:42:46 +04:00
|
|
|
if (!empty(OC_Util::$core_styles)) {
|
2012-10-17 12:52:16 +04:00
|
|
|
$this->append( 'cssfiles', OC_Helper::linkToRemoteBase('core.css', false));
|
2012-09-07 18:42:46 +04:00
|
|
|
}
|
2012-06-18 17:04:35 +04:00
|
|
|
foreach($cssfiles as $info) {
|
|
|
|
$root = $info[0];
|
|
|
|
$web = $info[1];
|
|
|
|
$file = $info[2];
|
|
|
|
$paths = explode('/', $file);
|
2012-06-21 23:19:39 +04:00
|
|
|
|
|
|
|
$in_root = false;
|
|
|
|
foreach(OC::$APPSROOTS as $app_root) {
|
|
|
|
if($root == $app_root['path']) {
|
|
|
|
$in_root = true;
|
2012-08-29 19:54:31 +04:00
|
|
|
break;
|
2012-06-21 23:19:39 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if($in_root ) {
|
|
|
|
$app = $paths[0];
|
2012-06-18 17:04:35 +04:00
|
|
|
unset($paths[0]);
|
|
|
|
$path = implode('/', $paths);
|
|
|
|
$this->append( 'cssfiles', OC_Helper::linkTo($app, $path));
|
2012-06-21 23:19:39 +04:00
|
|
|
}
|
|
|
|
else {
|
2012-06-18 17:04:35 +04:00
|
|
|
$this->append( 'cssfiles', $web.'/'.$file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* @brief append the $file-url if exist at $root
|
|
|
|
* @param $files array to append file info to
|
|
|
|
* @param $root path to check
|
|
|
|
* @param $web base for path
|
|
|
|
* @param $file the filename
|
|
|
|
*/
|
2012-12-15 02:04:42 +04:00
|
|
|
static public function appendIfExist(&$files, $root, $webroot, $file) {
|
|
|
|
if (is_file($root.'/'.$file)) {
|
2012-06-18 17:04:35 +04:00
|
|
|
$files[] = array($root, $webroot, $file);
|
|
|
|
return true;
|
2012-12-15 02:04:42 +04:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2012-06-18 17:04:35 +04:00
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
static public function findStylesheetFiles($styles) {
|
2012-06-18 17:04:35 +04:00
|
|
|
// Read the selected theme from the config file
|
|
|
|
$theme=OC_Config::getValue( 'theme' );
|
|
|
|
|
|
|
|
// Read the detected formfactor and use the right file name.
|
|
|
|
$fext = self::getFormFactorExtension();
|
|
|
|
|
|
|
|
$files = array();
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach($styles as $style) {
|
2012-06-18 17:04:35 +04:00
|
|
|
// is it in 3rdparty?
|
2012-06-18 17:35:04 +04:00
|
|
|
if(self::appendIfExist($files, OC::$THIRDPARTYROOT, OC::$THIRDPARTYWEBROOT, $style.'.css')) {
|
2012-06-18 17:04:35 +04:00
|
|
|
|
|
|
|
// or in the owncloud root?
|
2012-06-18 17:35:04 +04:00
|
|
|
}elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "$style$fext.css" )) {
|
|
|
|
}elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "$style.css" )) {
|
2012-06-18 17:04:35 +04:00
|
|
|
|
|
|
|
// or in core ?
|
2012-06-18 17:35:04 +04:00
|
|
|
}elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "core/$style$fext.css" )) {
|
|
|
|
}elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "core/$style.css" )) {
|
2012-06-18 17:04:35 +04:00
|
|
|
|
|
|
|
}else{
|
2012-06-21 23:19:39 +04:00
|
|
|
$append = false;
|
|
|
|
// or in apps?
|
|
|
|
foreach( OC::$APPSROOTS as $apps_dir)
|
|
|
|
{
|
2012-12-15 02:22:46 +04:00
|
|
|
if(self::appendIfExist($files, $apps_dir['path'], $apps_dir['url'], "$style$fext.css")) {
|
|
|
|
$append = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
elseif(self::appendIfExist($files, $apps_dir['path'], $apps_dir['url'], "$style.css")) {
|
|
|
|
$append = true;
|
|
|
|
break;
|
|
|
|
}
|
2012-06-21 23:19:39 +04:00
|
|
|
}
|
|
|
|
if(! $append) {
|
2012-07-20 19:51:50 +04:00
|
|
|
echo('css file not found: style:'.$style.' formfactor:'.$fext.' webroot:'.OC::$WEBROOT.' serverroot:'.OC::$SERVERROOT);
|
2012-06-21 23:19:39 +04:00
|
|
|
die();
|
|
|
|
}
|
2012-06-18 17:04:35 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// Add the theme css files. you can override the default values here
|
|
|
|
if(!empty($theme)) {
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach($styles as $style) {
|
2012-06-18 17:35:04 +04:00
|
|
|
if(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "themes/$theme/apps/$style$fext.css" )) {
|
|
|
|
}elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "themes/$theme/apps/$style.css" )) {
|
2012-06-18 17:04:35 +04:00
|
|
|
|
2012-06-18 17:35:04 +04:00
|
|
|
}elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "themes/$theme/$style$fext.css" )) {
|
|
|
|
}elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "themes/$theme/$style.css" )) {
|
2012-06-18 17:04:35 +04:00
|
|
|
|
2012-06-18 17:35:04 +04:00
|
|
|
}elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "themes/$theme/core/$style$fext.css" )) {
|
|
|
|
}elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "themes/$theme/core/$style.css" )) {
|
2012-06-18 17:04:35 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $files;
|
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
static public function findJavascriptFiles($scripts) {
|
2012-06-18 17:04:35 +04:00
|
|
|
// Read the selected theme from the config file
|
|
|
|
$theme=OC_Config::getValue( 'theme' );
|
|
|
|
|
|
|
|
// Read the detected formfactor and use the right file name.
|
|
|
|
$fext = self::getFormFactorExtension();
|
|
|
|
|
|
|
|
$files = array();
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach($scripts as $script) {
|
2012-06-18 17:04:35 +04:00
|
|
|
// Is it in 3rd party?
|
2012-06-18 17:35:04 +04:00
|
|
|
if(self::appendIfExist($files, OC::$THIRDPARTYROOT, OC::$THIRDPARTYWEBROOT, $script.'.js')) {
|
2012-06-18 17:04:35 +04:00
|
|
|
|
|
|
|
// Is it in apps and overwritten by the theme?
|
2012-06-18 17:35:04 +04:00
|
|
|
}elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "themes/$theme/apps/$script$fext.js" )) {
|
|
|
|
}elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "themes/$theme/apps/$script.js" )) {
|
2012-06-18 17:04:35 +04:00
|
|
|
|
|
|
|
// Is it in the owncloud root but overwritten by the theme?
|
2012-06-18 17:35:04 +04:00
|
|
|
}elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "themes/$theme/$script$fext.js" )) {
|
|
|
|
}elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "themes/$theme/$script.js" )) {
|
2012-06-18 17:04:35 +04:00
|
|
|
|
|
|
|
// Is it in the owncloud root ?
|
2012-06-18 17:35:04 +04:00
|
|
|
}elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "$script$fext.js" )) {
|
|
|
|
}elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "$script.js" )) {
|
2012-06-18 17:04:35 +04:00
|
|
|
|
|
|
|
// Is in core but overwritten by a theme?
|
2012-06-18 17:35:04 +04:00
|
|
|
}elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "themes/$theme/core/$script$fext.js" )) {
|
|
|
|
}elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "themes/$theme/core/$script.js" )) {
|
2012-06-18 17:04:35 +04:00
|
|
|
|
|
|
|
// Is it in core?
|
2012-06-18 17:35:04 +04:00
|
|
|
}elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "core/$script$fext.js" )) {
|
|
|
|
}elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "core/$script.js" )) {
|
2012-06-18 17:04:35 +04:00
|
|
|
|
|
|
|
}else{
|
2012-06-21 23:19:39 +04:00
|
|
|
// Is it part of an app?
|
|
|
|
$append = false;
|
|
|
|
foreach( OC::$APPSROOTS as $apps_dir) {
|
2012-12-15 02:22:46 +04:00
|
|
|
if(self::appendIfExist($files, $apps_dir['path'], OC::$WEBROOT.$apps_dir['url'], "$script$fext.js")) {
|
|
|
|
$append = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
elseif(self::appendIfExist($files, $apps_dir['path'], OC::$WEBROOT.$apps_dir['url'], "$script.js")) {
|
|
|
|
$append = true;
|
|
|
|
break;
|
|
|
|
}
|
2012-06-21 23:19:39 +04:00
|
|
|
}
|
|
|
|
if(! $append) {
|
|
|
|
echo('js file not found: script:'.$script.' formfactor:'.$fext.' webroot:'.OC::$WEBROOT.' serverroot:'.OC::$SERVERROOT);
|
|
|
|
die();
|
|
|
|
}
|
2012-06-18 17:04:35 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $files;
|
|
|
|
}
|
|
|
|
}
|