depend on bootstrap

This commit is contained in:
Uwe Steinmann 2016-01-26 07:58:26 +01:00
parent b2733a3cd9
commit 53031a13fc

View File

@ -27,7 +27,7 @@ class UI_Default {
$this->theme = $theme; $this->theme = $theme;
} }
static function getStyles() { /* {{{ */ static function __getStyles() { /* {{{ */
global $settings; global $settings;
$themes = array(); $themes = array();
@ -52,12 +52,14 @@ class UI_Default {
} else { } else {
echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\"\n". echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\"\n".
"\"http://www.w3.org/TR/html4/strict.dtd\">\n"; "\"http://www.w3.org/TR/html4/strict.dtd\">\n";
echo "<html>\n<head>\n"; echo "<html lang=\"en\">\n<head>\n";
echo "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n"; echo "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n";
echo "<link rel=\"STYLESHEET\" type=\"text/css\" href=\"../styles/".$theme."/style.css\"/>\n"; echo "<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n";
echo "<link rel=\"STYLESHEET\" type=\"text/css\" href=\"../styles/print.css\" media=\"print\"/>\n"; echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../styles/".$theme."/bootstrap/css/bootstrap.css\"/>\n";
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../styles/".$theme."/bootstrap/css/bootstrap-responsive.css\"/>\n";
echo "<link rel='shortcut icon' href='../styles/".$theme."/favicon.ico' type='image/x-icon'/>\n"; echo "<link rel='shortcut icon' href='../styles/".$theme."/favicon.ico' type='image/x-icon'/>\n";
echo "<script type='text/javascript' src='../js/jquery.min.js'></script>\n"; echo "<script type='text/javascript' src='../styles/".$theme."/jquery/jquery.min.js'></script>\n";
echo "<script type='text/javascript' src='../styles/".$theme."/bootstrap/js/bootstrap.min.js'></script>\n";
echo "<title>".(strlen($settings->_siteName)>0 ? $settings->_siteName : "SeedDMS").(strlen($title)>0 ? ": " : "").htmlspecialchars($title)."</title>\n"; echo "<title>".(strlen($settings->_siteName)>0 ? $settings->_siteName : "SeedDMS").(strlen($title)>0 ? ": " : "").htmlspecialchars($title)."</title>\n";
echo "</head>\n"; echo "</head>\n";
echo "<body".(strlen($bodyClass)>0 ? " class=\"".$bodyClass."\"" : "").">\n"; echo "<body".(strlen($bodyClass)>0 ? " class=\"".$bodyClass."\"" : "").">\n";
@ -90,26 +92,30 @@ class UI_Default {
} /* }}} */ } /* }}} */
function contentStart() { /* {{{ */ function contentStart() { /* {{{ */
echo "<div class=\"container-fluid\" style=\"margin-top: 50px;\">\n";
echo " <div class=\"row-fluid\">\n";
} /* }}} */ } /* }}} */
function contentEnd() { /* {{{ */ function contentEnd() { /* {{{ */
echo " </div>\n";
echo "</div>\n";
} /* }}} */ } /* }}} */
function globalBanner() { /* {{{ */ function globalBanner() { /* {{{ */
global $settings; global $settings;
echo "<div class=\"globalBox\" id=\"noNav\">\n"; echo "<div class=\"navbar navbar-inverse navbar-fixed-top\">\n";
echo "<div class=\"globalTR\"></div>\n"; echo " <div class=\"navbar-inner\">\n";
echo "<div id=\"logo\"><img src='../styles/logo.png'></div>\n"; echo " <div class=\"container-fluid\">\n";
echo "<div class=\"siteNameLogin\">". echo " <a class=\"brand\">".(strlen($settings->_sitename)>0 ? $settings->_sitename : "SeedDMS")."</a>\n";
(strlen($settings->_siteName)>0 ? $settings->_siteName : "SeedDMS"). echo " </div>\n";
"</div>\n"; echo " </div>\n";
echo "<div style=\"clear: both; height: 0px; font-size:0;\">&nbsp;</div>\n". echo "</div>\n";
"</div>\n";
return; return;
} /* }}} */ } /* }}} */
function globalNavigation($folder=null) { /* {{{ */ function __globalNavigation($folder=null) { /* {{{ */
global $settings, $user; global $settings, $user;
@ -150,7 +156,7 @@ class UI_Default {
return; return;
} /* }}} */ } /* }}} */
function pageNavigation($pageTitle, $pageType=null, $extra=null) { /* {{{ */ function __pageNavigation($pageTitle, $pageType=null, $extra=null) { /* {{{ */
global $settings, $user; global $settings, $user;
echo "<div class=\"headingContainer\">\n"; echo "<div class=\"headingContainer\">\n";
@ -188,7 +194,7 @@ class UI_Default {
return; return;
} /* }}} */ } /* }}} */
function folderNavigationBar($folder) { /* {{{ */ function __folderNavigationBar($folder) { /* {{{ */
global $user, $settings, $theme; global $user, $settings, $theme;
@ -222,7 +228,7 @@ class UI_Default {
return; return;
} /* }}} */ } /* }}} */
function documentNavigationBar() { /* {{{ */ function __documentNavigationBar() { /* {{{ */
global $user, $settings, $document; global $user, $settings, $document;
@ -259,7 +265,7 @@ class UI_Default {
return; return;
} /* }}} */ } /* }}} */
function accountNavigationBar() { /* {{{ */ function __accountNavigationBar() { /* {{{ */
global $settings,$user; global $settings,$user;
@ -279,7 +285,7 @@ class UI_Default {
return; return;
} /* }}} */ } /* }}} */
function myDocumentsNavigationBar() { /* {{{ */ function __myDocumentsNavigationBar() { /* {{{ */
echo "<ul class=\"localNav\">\n"; echo "<ul class=\"localNav\">\n";
echo "<li id=\"first\"><a href=\"../out/out.MyDocuments.php?inProcess=1\">".getMLText("documents_in_process")."</a></li>\n"; echo "<li id=\"first\"><a href=\"../out/out.MyDocuments.php?inProcess=1\">".getMLText("documents_in_process")."</a></li>\n";
@ -290,7 +296,7 @@ class UI_Default {
return; return;
} /* }}} */ } /* }}} */
function adminToolsNavigationBar() { /* {{{ */ function __adminToolsNavigationBar() { /* {{{ */
global $settings; global $settings;
@ -305,7 +311,7 @@ class UI_Default {
return; return;
} /* }}} */ } /* }}} */
function calendarNavigationBar($d){ /* {{{ */ function __calendarNavigationBar($d){ /* {{{ */
global $settings,$user; global $settings,$user;
@ -321,7 +327,7 @@ class UI_Default {
} /* }}} */ } /* }}} */
function pageList($pageNumber, $totalPages, $baseURI, $params) { /* {{{ */ function __pageList($pageNumber, $totalPages, $baseURI, $params) { /* {{{ */
if (!is_numeric($pageNumber) || !is_numeric($totalPages) || $totalPages<2) { if (!is_numeric($pageNumber) || !is_numeric($totalPages) || $totalPages<2) {
return; return;
@ -364,7 +370,7 @@ class UI_Default {
return; return;
} /* }}} */ } /* }}} */
function contentContainer($content) { /* {{{ */ function __contentContainer($content) { /* {{{ */
echo "<div class=\"contentContainer\">\n"; echo "<div class=\"contentContainer\">\n";
echo "<div class=\"content\">\n"; echo "<div class=\"content\">\n";
echo "<div class=\"content-l\"><div class=\"content-r\"><div class=\"content-br\"><div class=\"content-bl\">\n"; echo "<div class=\"content-l\"><div class=\"content-r\"><div class=\"content-br\"><div class=\"content-bl\">\n";
@ -402,7 +408,7 @@ class UI_Default {
return; return;
} /* }}} */ } /* }}} */
function getMimeIcon($fileType) { /* {{{ */ function __getMimeIcon($fileType) { /* {{{ */
// for extension use LOWER CASE only // for extension use LOWER CASE only
$icons = array(); $icons = array();
$icons["txt"] = "txt.png"; $icons["txt"] = "txt.png";
@ -483,7 +489,7 @@ class UI_Default {
} }
} /* }}} */ } /* }}} */
function printDateChooser($defDate = -1, $varName) { /* {{{ */ function __printDateChooser($defDate = -1, $varName) { /* {{{ */
if ($defDate == -1) if ($defDate == -1)
$defDate = mktime(); $defDate = mktime();
@ -520,7 +526,7 @@ class UI_Default {
print "</select>"; print "</select>";
} /* }}} */ } /* }}} */
function printSequenceChooser($objArr, $keepID = -1) { /* {{{ */ function __printSequenceChooser($objArr, $keepID = -1) { /* {{{ */
if (count($objArr) > 0) { if (count($objArr) > 0) {
$max = $objArr[count($objArr)-1]->getSequence() + 1; $max = $objArr[count($objArr)-1]->getSequence() + 1;
$min = $objArr[0]->getSequence() - 1; $min = $objArr[0]->getSequence() - 1;
@ -546,7 +552,7 @@ class UI_Default {
print "</select>"; print "</select>";
} /* }}} */ } /* }}} */
function printDocumentChooser($formName) { /* {{{ */ function __printDocumentChooser($formName) { /* {{{ */
global $settings; global $settings;
?> ?>
<script language="JavaScript"> <script language="JavaScript">
@ -561,7 +567,7 @@ class UI_Default {
print "&nbsp;&nbsp;<input type=\"Button\" value=\"".getMLText("document")."...\" onclick=\"chooseDoc".$formName."();\">"; print "&nbsp;&nbsp;<input type=\"Button\" value=\"".getMLText("document")."...\" onclick=\"chooseDoc".$formName."();\">";
} /* }}} */ } /* }}} */
function printFolderChooser($formName, $accessMode, $exclude = -1, $default = false) { /* {{{ */ function __printFolderChooser($formName, $accessMode, $exclude = -1, $default = false) { /* {{{ */
global $settings; global $settings;
?> ?>
<script language="JavaScript"> <script language="JavaScript">
@ -576,7 +582,7 @@ class UI_Default {
print "&nbsp;&nbsp;<input type=\"Button\" value=\"".getMLText("folder")."...\" onclick=\"chooseFolder".$formName."();\">"; print "&nbsp;&nbsp;<input type=\"Button\" value=\"".getMLText("folder")."...\" onclick=\"chooseFolder".$formName."();\">";
} /* }}} */ } /* }}} */
function printCategoryChooser($formName, $categories=array()) { /* {{{ */ function __printCategoryChooser($formName, $categories=array()) { /* {{{ */
global $settings; global $settings;
?> ?>
<script language="JavaScript"> <script language="JavaScript">
@ -604,7 +610,7 @@ class UI_Default {
print "&nbsp;&nbsp;<input type=\"Button\" value=\"".getMLText("category")."...\" onclick=\"chooseCategory".$formName."();\">"; print "&nbsp;&nbsp;<input type=\"Button\" value=\"".getMLText("category")."...\" onclick=\"chooseCategory".$formName."();\">";
} /* }}} */ } /* }}} */
function printAttributeEditField($attrdef, $objvalue, $fieldname='attributes') { /* {{{ */ function __printAttributeEditField($attrdef, $objvalue, $fieldname='attributes') { /* {{{ */
if($valueset = $attrdef->getValueSetAsArray()) { if($valueset = $attrdef->getValueSetAsArray()) {
echo "<select name=\"".$fieldname."[".$attrdef->getId()."]\">"; echo "<select name=\"".$fieldname."[".$attrdef->getId()."]\">";
if($attrdef->getMinValues() < 1) { if($attrdef->getMinValues() < 1) {
@ -622,7 +628,7 @@ class UI_Default {
} }
} /* }}} */ } /* }}} */
function getImgPath($img) { /* {{{ */ function __getImgPath($img) { /* {{{ */
global $theme; global $theme;
if ( is_file("../styles/$theme/images/$img") ) { if ( is_file("../styles/$theme/images/$img") ) {
@ -634,7 +640,7 @@ class UI_Default {
return "../out/images/$img"; return "../out/images/$img";
} /* }}} */ } /* }}} */
function printImgPath($img) { /* {{{ */ function __printImgPath($img) { /* {{{ */
print UI::getImgPath($img); print UI::getImgPath($img);
} /* }}} */ } /* }}} */
@ -655,7 +661,7 @@ class UI_Default {
} /* }}} */ } /* }}} */
// navigation flag is used for items links (navigation or selection) // navigation flag is used for items links (navigation or selection)
function printFoldersTree($accessMode, $exclude, $folderID, $currentFolderID=-1, $navigation=false) { /* {{{ */ function __printFoldersTree($accessMode, $exclude, $folderID, $currentFolderID=-1, $navigation=false) { /* {{{ */
global $dms, $user, $form, $settings; global $dms, $user, $form, $settings;
if ($settings->_expandFolderTree==2){ if ($settings->_expandFolderTree==2){
@ -745,7 +751,7 @@ class UI_Default {
if ($folderID == $settings->_rootFolderID) print "</ul>\n"; if ($folderID == $settings->_rootFolderID) print "</ul>\n";
} /* }}} */ } /* }}} */
function printTreeNavigation($folderid,$showtree){ /* {{{ */ function __printTreeNavigation($folderid,$showtree){ /* {{{ */
global $settings; global $settings;
?> ?>
@ -799,7 +805,7 @@ class UI_Default {
* @param integer $maxfiles maximum number of files allowed to upload * @param integer $maxfiles maximum number of files allowed to upload
* @param array $fields list of post fields * @param array $fields list of post fields
*/ */
function printUploadApplet($uploadurl, $attributes, $maxfiles=0, $fields=array()){ /* {{{ */ function __printUploadApplet($uploadurl, $attributes, $maxfiles=0, $fields=array()){ /* {{{ */
global $settings; global $settings;
?> ?>
<applet id="jumpLoaderApplet" name="jumpLoaderApplet" <applet id="jumpLoaderApplet" name="jumpLoaderApplet"