* mereg zentaophp framework to zentao.

This commit is contained in:
wangyidong
2017-06-09 17:06:18 +08:00
parent c27f1f7d34
commit a37df65bc8
11 changed files with 1514 additions and 1364 deletions
+7 -18
View File
@@ -77,7 +77,6 @@ class baseHTML
{
$class = empty($class) ? ('icon-' . $name) : ('icon-' . $name . ' ' . $class);
return "<i class='$class'></i>";
}
/**
@@ -110,16 +109,11 @@ class baseHTML
static public function a($href = '', $title = '', $misc = '', $newline = true)
{
global $config;
if(empty($title)) $title = $href;
$newline = $newline ? "\n" : '';
/* if page has onlybody param then add this param in all link. the param hide header and footer. */
if(strpos($href, 'onlybody=yes') === false and isonlybody())
{
$onlybody = strpos($href, '?') === false ? "?onlybody=yes" : "&onlybody=yes";
$href .= $onlybody;
}
$href = helper::processOnlyBodyParam($href);
return "<a href='$href' $misc>$title</a>$newline";
}
@@ -491,7 +485,7 @@ class baseHTML
*/
public static function backButton($label = '', $misc = '', $class = '')
{
if(isonlybody()) return false;
if(helper::inOnlyBodyMode()) return false;
global $lang;
if(empty($label))
@@ -537,14 +531,9 @@ class baseHTML
{
global $config, $lang;
if(isonlybody() and $lang->goback == $label) return false;
if(helper::inOnlyBodyMode() and $lang->goback == $label) return false;
$link = helper::processOnlyBodyParam($link);
/* if page has onlybody param then add this param in all link. the param hide header and footer. */
if(strpos($link, 'onlybody=') === false and isonlybody())
{
$onlybody = strpos($link, '?') === false ? "?onlybody=yes" : "&onlybody=yes";
$link .= $onlybody;
}
return " <button type='button' class='$class' $misc onclick='$target.location.href=\"$link\"'>$label</button>";
}
@@ -703,7 +692,7 @@ EOT;
$string .= "<a id='allchecker' class='btn btn-select-all check-all $appendClass' data-scope='$scope' href='javascript:;' >{$lang->selectAll}</a>";
$string .= "<a id='reversechecker' class='btn btn-select-reverse check-inverse $appendClass' data-scope='$scope' href='javascript:;'>{$lang->selectReverse}</a>";
if($asGroup) $string .= "</div>";
return $string;
return $string;
}
/**