977 lines
28 KiB
PHP
977 lines
28 KiB
PHP
<?php
|
|
/**
|
|
* The front class file of ZenTaoPHP framework.
|
|
*
|
|
* The author disclaims copyright to this source code. In place of
|
|
* a legal notice, here is a blessing:
|
|
*
|
|
* May you do good and not evil.
|
|
* May you find forgiveness for yourself and forgive others.
|
|
* May you share freely, never taking more than you give.
|
|
*/
|
|
|
|
/**
|
|
* The html class, to build html tags.
|
|
*
|
|
* @package framework
|
|
*/
|
|
class html
|
|
{
|
|
/**
|
|
* Create the title tag.
|
|
*
|
|
* @param mixed $title
|
|
* @access public
|
|
* @return string.
|
|
*/
|
|
public static function title($title)
|
|
{
|
|
return "<title>$title</title>\n";
|
|
}
|
|
|
|
/**
|
|
* Create a meta.
|
|
*
|
|
* @param mixed $name the meta name
|
|
* @param mixed $value the meta value
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public static function meta($name, $value)
|
|
{
|
|
return "<meta name='$name' content='$value'>\n";
|
|
}
|
|
|
|
/**
|
|
* Create fav icon tag
|
|
*
|
|
* @param mixed $url the url of the icon.
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public static function favicon($url)
|
|
{
|
|
return "<link rel='icon' href='$url' type='image/x-icon' />\n" .
|
|
"<link rel='shortcut icon' href='$url' type='image/x-icon' />\n";
|
|
|
|
}
|
|
|
|
/**
|
|
* Create icon tag
|
|
*
|
|
* @param name $name the name of the icon.
|
|
* @param cssClass $class the extra css class of the icon.
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public static function icon($name, $class = '')
|
|
{
|
|
$class = empty($class) ? ('icon-' . $name) : ('icon-' . $name . ' ' . $class);
|
|
return "<i class='$class'></i>";
|
|
}
|
|
|
|
/**
|
|
* Create the rss tag.
|
|
*
|
|
* @param string $url
|
|
* @param string $title
|
|
* @static
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public static function rss($url, $title = '')
|
|
{
|
|
return "<link href='$url' title='$title' type='application/rss+xml' rel='alternate' />";
|
|
}
|
|
|
|
/**
|
|
* Create tags like <a href="">text</a>
|
|
*
|
|
* @param string $href the link url.
|
|
* @param string $title the link title.
|
|
* @param string $target the target window
|
|
* @param string $misc other params.
|
|
* @param boolean $newline
|
|
* @return string
|
|
*/
|
|
static public function a($href = '', $title = '', $target = "_self", $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 = $config->requestType == 'PATH_INFO' ? "?onlybody=yes" : "&onlybody=yes";
|
|
$href .= $onlybody;
|
|
}
|
|
|
|
if($target == '_self') return "<a href='$href' $misc>$title</a>$newline";
|
|
return "<a href='$href' target='$target' $misc>$title</a>$newline";
|
|
}
|
|
|
|
/**
|
|
* Create tags like <a href="mailto:">text</a>
|
|
*
|
|
* @param string $mail the email address
|
|
* @param string $title the email title.
|
|
* @return string
|
|
*/
|
|
static public function mailto($mail = '', $title = '')
|
|
{
|
|
if(empty($title)) $title = $mail;
|
|
return "<a href='mailto:$mail'>$title</a>";
|
|
}
|
|
|
|
/**
|
|
* Create tags like "<select><option></option></select>"
|
|
*
|
|
* @param string $name the name of the select tag.
|
|
* @param array $options the array to create select tag from.
|
|
* @param string $selectedItems the item(s) to be selected, can like item1,item2.
|
|
* @param string $attrib other params such as multiple, size and style.
|
|
* @param string $append adjust if add options[$selectedItems].
|
|
* @return string
|
|
*/
|
|
static public function select($name = '', $options = array(), $selectedItems = "", $attrib = "", $append = false)
|
|
{
|
|
$options = (array)($options);
|
|
if($append and !isset($options[$selectedItems])) $options[$selectedItems] = $selectedItems;
|
|
if(!is_array($options) or empty($options)) return false;
|
|
|
|
/* The begin. */
|
|
$id = $name;
|
|
if(strpos($name, '[') !== false) $id = trim(str_replace(']', '', str_replace('[', '', $name)));
|
|
$string = "<select name='$name' id='$id' $attrib>\n";
|
|
|
|
/* The options. */
|
|
$selectedItems = ",$selectedItems,";
|
|
foreach($options as $key => $value)
|
|
{
|
|
$key = str_replace('item', '', $key);
|
|
$selected = strpos($selectedItems, ",$key,") !== false ? " selected='selected'" : '';
|
|
$string .= "<option value='$key'$selected>$value</option>\n";
|
|
}
|
|
|
|
/* End. */
|
|
return $string .= "</select>\n";
|
|
}
|
|
|
|
/**
|
|
* Create select with optgroup.
|
|
*
|
|
* @param string $name the name of the select tag.
|
|
* @param array $groups the option groups.
|
|
* @param string $selectedItems the item(s) to be selected, can like item1,item2.
|
|
* @param string $attrib other params such as multiple, size and style.
|
|
* @return string
|
|
*/
|
|
static public function selectGroup($name = '', $groups = array(), $selectedItems = "", $attrib = "")
|
|
{
|
|
if(!is_array($groups) or empty($groups)) return false;
|
|
|
|
/* The begin. */
|
|
$id = $name;
|
|
if(strpos($name, '[') !== false) $id = trim(str_replace(']', '', str_replace('[', '', $name)));
|
|
$string = "<select name='$name' id='$id' $attrib>\n";
|
|
|
|
/* The options. */
|
|
$selectedItems = ",$selectedItems,";
|
|
foreach($groups as $groupName => $options)
|
|
{
|
|
$string .= "<optgroup label='$groupName'>\n";
|
|
foreach($options as $key => $value)
|
|
{
|
|
$key = str_replace('item', '', $key);
|
|
$selected = strpos($selectedItems, ",$key,") !== false ? " selected='selected'" : '';
|
|
$string .= "<option value='$key'$selected>$value</option>\n";
|
|
}
|
|
$string .= "</optgroup>\n";
|
|
}
|
|
|
|
/* End. */
|
|
return $string .= "</select>\n";
|
|
}
|
|
|
|
/**
|
|
* Create tags like "<input type='radio' />"
|
|
*
|
|
* @param string $name the name of the radio tag.
|
|
* @param array $options the array to create radio tag from.
|
|
* @param string $checked the value to checked by default.
|
|
* @param string $attrib other attribs.
|
|
* @param string $type inline or block
|
|
* @return string
|
|
*/
|
|
static public function radio($name = '', $options = array(), $checked = '', $attrib = '', $type = 'inline')
|
|
{
|
|
$options = (array)($options);
|
|
if(!is_array($options) or empty($options)) return false;
|
|
$isBlock = $type == 'block';
|
|
|
|
$string = '';
|
|
foreach($options as $key => $value)
|
|
{
|
|
if($isBlock) $string .= "<div class='radio'><label>";
|
|
else $string .= "<label class='radio-inline'>";
|
|
$string .= "<input type='radio' name='$name' value='$key' ";
|
|
$string .= ($key == $checked) ? " checked ='checked'" : "";
|
|
$string .= $attrib;
|
|
$string .= " id='$name$key' /> ";
|
|
$string .= $value;
|
|
if($isBlock) $string .= '</label></div>';
|
|
else $string .= '</label>';
|
|
}
|
|
return $string;
|
|
}
|
|
|
|
/**
|
|
* Create tags like "<input type='checkbox' />"
|
|
*
|
|
* @param string $name the name of the checkbox tag.
|
|
* @param array $options the array to create checkbox tag from.
|
|
* @param string $checked the value to checked by default, can be item1,item2
|
|
* @param string $attrib other attribs.
|
|
* @return string
|
|
*/
|
|
static public function checkbox($name, $options, $checked = "", $attrib = "", $type = 'inline')
|
|
{
|
|
$options = (array)($options);
|
|
if(!is_array($options) or empty($options)) return false;
|
|
$string = '';
|
|
$checked = ",$checked,";
|
|
$isBlock = $type == 'block';
|
|
|
|
foreach($options as $key => $value)
|
|
{
|
|
$key = str_replace('item', '', $key);
|
|
if($isBlock) $string .= "<div class='checkbox'><label>";
|
|
else $string .= "<label class='checkbox-inline'>";
|
|
$string .= "<input type='checkbox' name='{$name}[]' value='$key' ";
|
|
$string .= (strpos($checked, ",$key,") !== false) ? " checked ='checked'" : "";
|
|
$string .= $attrib;
|
|
$string .= " id='$name$key' /> ";
|
|
$string .= $value;
|
|
if($isBlock) $string .= '</label></div>';
|
|
else $string .= '</label>';
|
|
}
|
|
return $string;
|
|
}
|
|
|
|
/**
|
|
* Create tags like "<input type='$type' onclick='selectAll()'/>"
|
|
*
|
|
* @param string $scope the scope of select all.
|
|
* @param string $type the type of input tag.
|
|
* @param boolean $checked if the type is checkbox, set the checked attribute.
|
|
* @return string
|
|
*/
|
|
static public function selectAll($scope = "", $type = "button", $checked = false)
|
|
{
|
|
$string = <<<EOT
|
|
<script>
|
|
function selectAll(checker, scope, type)
|
|
{
|
|
if(scope)
|
|
{
|
|
if(type == 'button')
|
|
{
|
|
$('#' + scope + ' input').each(function()
|
|
{
|
|
$(this).attr("checked", true)
|
|
});
|
|
}
|
|
else if(type == 'checkbox')
|
|
{
|
|
$('#' + scope + ' input').each(function()
|
|
{
|
|
$(this).attr("checked", checker.checked)
|
|
});
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if(type == 'button')
|
|
{
|
|
$('input:checkbox').each(function()
|
|
{
|
|
$(this).attr("checked", true)
|
|
});
|
|
}
|
|
else if(type == 'checkbox')
|
|
{
|
|
$('input:checkbox').each(function()
|
|
{
|
|
$(this).attr("checked", checker.checked)
|
|
});
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
EOT;
|
|
global $lang;
|
|
if($type == 'checkbox')
|
|
{
|
|
if($checked)
|
|
{
|
|
$string .= " <input type='checkbox' name='allchecker[]' checked=$checked onclick='selectAll(this, \"$scope\", \"$type\")' />";
|
|
}
|
|
else
|
|
{
|
|
$string .= " <input type='checkbox' name='allchecker[]' onclick='selectAll(this, \"$scope\", \"$type\")' />";
|
|
}
|
|
}
|
|
elseif($type == 'button')
|
|
{
|
|
$string .= "<input type='button' name='allchecker' id='allchecker' class='btn btn-select-all' value='{$lang->selectAll}' onclick='selectAll(this, \"$scope\", \"$type\")' />";
|
|
}
|
|
|
|
return $string;
|
|
}
|
|
|
|
/**
|
|
* Create tags like "<input type='button' onclick='selectReverse()'/>"
|
|
*
|
|
* @param string $scope the scope of select reverse.
|
|
* @return string
|
|
*/
|
|
static public function selectReverse($scope = "")
|
|
{
|
|
$string = <<<EOT
|
|
<script>
|
|
function selectReverse(scope)
|
|
{
|
|
if(scope)
|
|
{
|
|
$('#' + scope + ' input').each(function()
|
|
{
|
|
$(this).attr("checked", !$(this).attr("checked"))
|
|
});
|
|
}
|
|
else
|
|
{
|
|
$('input:checkbox').each(function()
|
|
{
|
|
$(this).attr("checked", !$(this).attr("checked"))
|
|
});
|
|
}
|
|
}
|
|
</script>
|
|
EOT;
|
|
global $lang;
|
|
$string .= "<input type='button' name='reversechecker' id='reversechecker' class='btn btn-select-reverse' value='{$lang->selectReverse}' onclick='selectReverse(\"$scope\")'/>";
|
|
|
|
return $string;
|
|
}
|
|
|
|
/**
|
|
* Create select buttons include 'selectAll' and 'selectAll'.
|
|
*
|
|
* @param string $scope the scope of select reverse.
|
|
* @return string
|
|
*/
|
|
static public function selectButton($scope = "")
|
|
{
|
|
$string = <<<EOT
|
|
<script>
|
|
$(function()
|
|
{
|
|
if($('body').data('bindSelectBtn')) return;
|
|
$('body').data('bindSelectBtn', true);
|
|
$(document).on('click', '.check-all, .check-inverse', function()
|
|
{
|
|
var e = $(this);
|
|
if(e.closest('.datatable').length) return;
|
|
scope = e.data('scope');
|
|
scope = scope ? $('#' + scope) : e.closest('.table');
|
|
if(!scope.length) scope = e.closest('form');
|
|
scope.find('input:checkbox').each(e.hasClass('check-inverse') ? function() { $(this).attr("checked", !$(this).attr("checked"));} : function() { $(this).attr("checked", true);});
|
|
});
|
|
});
|
|
</script>
|
|
EOT;
|
|
global $lang;
|
|
$string .= "<a class='btn btn-select-all check-all' data-scope='$scope' href='javascript:;' >{$lang->selectAll}</a>";
|
|
$string .= "<a class='btn btn-select-reverse check-inverse' data-scope='$scope' href='javascript:;'>{$lang->selectReverse}</a>";
|
|
return $string;
|
|
}
|
|
|
|
/**
|
|
* Create tags like "<input type='text' />"
|
|
*
|
|
* @param string $name the name of the text input tag.
|
|
* @param string $value the default value.
|
|
* @param string $attrib other attribs.
|
|
* @return string
|
|
*/
|
|
static public function input($name, $value = "", $attrib = "")
|
|
{
|
|
return "<input type='text' name='$name' id='$name' value='$value' $attrib />\n";
|
|
}
|
|
|
|
/**
|
|
* Create tags like "<input type='hidden' />"
|
|
*
|
|
* @param string $name the name of the text input tag.
|
|
* @param string $value the default value.
|
|
* @param string $attrib other attribs.
|
|
* @return string
|
|
*/
|
|
static public function hidden($name, $value = "", $attrib = "")
|
|
{
|
|
return "<input type='hidden' name='$name' id='$name' value='$value' $attrib />\n";
|
|
}
|
|
|
|
/**
|
|
* Create tags like "<input type='password' />"
|
|
*
|
|
* @param string $name the name of the text input tag.
|
|
* @param string $value the default value.
|
|
* @param string $attrib other attribs.
|
|
* @return string
|
|
*/
|
|
static public function password($name, $value = "", $attrib = "")
|
|
{
|
|
return "<input type='password' name='$name' id='$name' value='$value' $attrib />\n";
|
|
}
|
|
|
|
/**
|
|
* Create tags like "<textarea></textarea>"
|
|
*
|
|
* @param string $name the name of the textarea tag.
|
|
* @param string $value the default value of the textarea tag.
|
|
* @param string $attrib other attribs.
|
|
* @return string
|
|
*/
|
|
static public function textarea($name, $value = "", $attrib = "")
|
|
{
|
|
return "<textarea name='$name' id='$name' $attrib>$value</textarea>\n";
|
|
}
|
|
|
|
/**
|
|
* Create tags like "<input type='file' />".
|
|
*
|
|
* @param string $name the name of the file name.
|
|
* @param string $attrib other attribs.
|
|
* @return string
|
|
*/
|
|
static public function file($name, $attrib = "")
|
|
{
|
|
return "<input type='file' name='$name' id='$name' $attrib />\n";
|
|
}
|
|
|
|
/**
|
|
* Create submit button.
|
|
*
|
|
* @param string $label the label of the button
|
|
* @param string $misc other params
|
|
* @static
|
|
* @access public
|
|
* @return string the submit button tag.
|
|
*/
|
|
public static function submitButton($label = '', $misc = '', $class = 'btn-primary')
|
|
{
|
|
if(empty($label))
|
|
{
|
|
global $lang;
|
|
$label = $lang->save;
|
|
}
|
|
return " <button type='submit' id='submit' $misc class='btn btn-submit $class'>$label</button>";
|
|
}
|
|
|
|
/**
|
|
* Create reset button.
|
|
*
|
|
* @static
|
|
* @access public
|
|
* @return string the reset button tag.
|
|
*/
|
|
public static function resetButton($label = '', $misc = '', $class = '')
|
|
{
|
|
if(empty($label))
|
|
{
|
|
global $lang;
|
|
$label = $lang->reset;
|
|
}
|
|
return " <button type='reset' id='reset' class='btn btn-reset $class'>$label</button>";
|
|
}
|
|
|
|
/**
|
|
* Back button.
|
|
*
|
|
* @static
|
|
* @access public
|
|
* @return string the back button tag.
|
|
*/
|
|
public static function backButton($misc = '')
|
|
{
|
|
global $lang;
|
|
if(isonlybody()) return false;
|
|
return "<a href='javascript:history.go(-1);' class='btn btn-back' $misc >{$lang->goback}</a>";
|
|
}
|
|
|
|
/**
|
|
* Create common button.
|
|
*
|
|
* @param string $label the label of the button
|
|
* @param string $misc other params
|
|
* @static
|
|
* @access public
|
|
* @return string the common button tag.
|
|
*/
|
|
public static function commonButton($label = '', $misc = '', $class = '', $icon = '')
|
|
{
|
|
if($icon) $label = "<i class='icon-" . $icon . "'></i> " . $label;
|
|
if($class) $class = 'btn ' . $class; else $class = 'btn';
|
|
return " <button type='button' $misc class='$class'>$label</button>";
|
|
}
|
|
|
|
/**
|
|
* create a button, when click, go to a link.
|
|
*
|
|
* @param string $label the link title
|
|
* @param string $link the link url
|
|
* @param string $target the target window
|
|
* @param string $misc other params
|
|
* @param string $class css class
|
|
* @static
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public static function linkButton($label = '', $link = '', $target = 'self', $misc = '', $class = '')
|
|
{
|
|
global $config, $lang;
|
|
|
|
if(isonlybody() and $lang->goback == $label) return false;
|
|
|
|
/* 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 = $config->requestType == 'PATH_INFO' ? "?onlybody=yes" : "&onlybody=yes";
|
|
$link .= $onlybody;
|
|
}
|
|
|
|
return " <button type='button' $misc onclick='{$target}.location=\"$link\"' class='btn $class'>$label</button>";
|
|
}
|
|
|
|
/**
|
|
* Print the star images.
|
|
*
|
|
* @param float $stars 0 1 1.5 2 2.5 3 3.5 4 4.5 5
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public static function printStars($stars)
|
|
{
|
|
$redStars = 0;
|
|
$halfStars = 0;
|
|
$whiteStars = 5;
|
|
if($stars)
|
|
{
|
|
$redStars = floor($stars);
|
|
$halfStars = $stars - $redStars ? 1 : 0;
|
|
$whiteStars = 5 - ceil($stars);
|
|
}
|
|
echo "<span class='stars-list'>";
|
|
for($i = 1; $i <= $redStars; $i ++) echo "<i class='icon-star'></i>";
|
|
for($i = 1; $i <= $halfStars; $i ++) echo "<i class='icon-star-half-full'></i>";
|
|
for($i = 1; $i <= $whiteStars; $i ++) echo "<i class='icon-star-empty'></i>";
|
|
echo '</span>';
|
|
}
|
|
}
|
|
|
|
/**
|
|
* JS class.
|
|
*
|
|
* @package front
|
|
*/
|
|
class js
|
|
{
|
|
/**
|
|
* Import a js file.
|
|
*
|
|
* @param string $url
|
|
* @param string $version
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public static function import($url, $version = '')
|
|
{
|
|
if(!$version) $version = filemtime(__FILE__);
|
|
echo "<script src='$url?v=$version'></script>\n";
|
|
}
|
|
|
|
/**
|
|
* The start of javascript.
|
|
*
|
|
* @static
|
|
* @access private
|
|
* @return string
|
|
*/
|
|
static private function start($full = true)
|
|
{
|
|
if($full) return "<html><meta charset='utf-8'/><style>body{background:white}</style><script>";
|
|
return "<script>";
|
|
}
|
|
|
|
/**
|
|
* The end of javascript.
|
|
*
|
|
* @static
|
|
* @access private
|
|
* @return void
|
|
*/
|
|
static private function end()
|
|
{
|
|
return "\n</script>\n";
|
|
}
|
|
|
|
/**
|
|
* Show a alert box.
|
|
*
|
|
* @param string $message
|
|
* @static
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
static public function alert($message = '')
|
|
{
|
|
return self::start() . "alert('" . $message . "')" . self::end() . self::resetForm();
|
|
}
|
|
|
|
/**
|
|
* Show error info.
|
|
*
|
|
* @param string|array $message
|
|
* @static
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
static public function error($message)
|
|
{
|
|
$alertMessage = '';
|
|
if(is_array($message))
|
|
{
|
|
foreach($message as $item)
|
|
{
|
|
is_array($item) ? $alertMessage .= join('\n', $item) . '\n' : $alertMessage .= $item . '\n';
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$alertMessage = $message;
|
|
}
|
|
return self::alert($alertMessage);
|
|
}
|
|
|
|
/**
|
|
* Reset the submit form.
|
|
*
|
|
* @static
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
static public function resetForm()
|
|
{
|
|
return self::start() . 'if(window.parent) window.parent.document.body.click();' . self::end();
|
|
}
|
|
|
|
/**
|
|
* show a confirm box, press ok go to okURL, else go to cancleURL.
|
|
*
|
|
* @param string $message the text to be showed.
|
|
* @param string $okURL the url to go to when press 'ok'.
|
|
* @param string $cancleURL the url to go to when press 'cancle'.
|
|
* @param string $okTarget the target to go to when press 'ok'.
|
|
* @param string $cancleTarget the target to go to when press 'cancle'.
|
|
* @return string
|
|
*/
|
|
static public function confirm($message = '', $okURL = '', $cancleURL = '', $okTarget = "self", $cancleTarget = "self", $Echo = true)
|
|
{
|
|
$js = self::start();
|
|
|
|
$confirmAction = '';
|
|
if(strtolower($okURL) == "back")
|
|
{
|
|
$confirmAction = "history.back(-1);";
|
|
}
|
|
elseif(!empty($okURL))
|
|
{
|
|
$confirmAction = "$okTarget.location = '$okURL';";
|
|
}
|
|
|
|
$cancleAction = '';
|
|
if(strtolower($cancleURL) == "back")
|
|
{
|
|
$cancleAction = "history.back(-1);";
|
|
}
|
|
elseif(!empty($cancleURL))
|
|
{
|
|
$cancleAction = "$cancleTarget.location = '$cancleURL';";
|
|
}
|
|
|
|
$js .= <<<EOT
|
|
if(confirm("$message"))
|
|
{
|
|
$confirmAction
|
|
}
|
|
else
|
|
{
|
|
$cancleAction
|
|
}
|
|
EOT;
|
|
$js .= self::end();
|
|
return $js;
|
|
}
|
|
|
|
/**
|
|
* change the location of the $target window to the $URL.
|
|
*
|
|
* @param string $url the url will go to.
|
|
* @param string $target the target of the url.
|
|
* @return string the javascript string.
|
|
*/
|
|
static public function locate($url, $target = "self")
|
|
{
|
|
/* If the url if empty, goto the home page. */
|
|
if(!$url)
|
|
{
|
|
global $config;
|
|
$url = $config->webRoot;
|
|
}
|
|
|
|
$js = self::start();
|
|
if(strtolower($url) == "back")
|
|
{
|
|
$js .= "history.back(-1);\n";
|
|
}
|
|
else
|
|
{
|
|
$js .= "$target.location='$url';\n";
|
|
}
|
|
return $js . self::end();
|
|
}
|
|
|
|
/**
|
|
* Close current window.
|
|
*
|
|
* @static
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
static public function closeWindow()
|
|
{
|
|
return self::start(). "window.close();" . self::end();
|
|
}
|
|
|
|
/**
|
|
* Goto a page after a timer.
|
|
*
|
|
* @param string $url the url will go to.
|
|
* @param string $target the target of the url.
|
|
* @param int $time the timer, msec.
|
|
* @return string the javascript string.
|
|
*/
|
|
static public function refresh($url, $target = "self", $time = 3000)
|
|
{
|
|
$js = self::start();
|
|
$js .= "setTimeout(\"$target.location='$url'\", $time);";
|
|
$js .= self::end();
|
|
return $js;
|
|
}
|
|
|
|
/**
|
|
* Reload a window.
|
|
*
|
|
* @param string $window the window to reload.
|
|
* @return string the javascript string.
|
|
*/
|
|
static public function reload($window = 'self')
|
|
{
|
|
$js = self::start();
|
|
$js .= "var href = $window.location.href;\n";
|
|
$js .= "$window.location.href = href.indexOf('#') < 0 ? href : href.substring(0, href.indexOf('#'));";
|
|
|
|
$js .= self::end();
|
|
return $js;
|
|
}
|
|
|
|
/**
|
|
* Close colorbox in javascript.
|
|
* This is a obsolete method, you can use 'closeModal' instead.
|
|
*
|
|
* @param string $window
|
|
* @static
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
static public function closeColorbox($window = 'self')
|
|
{
|
|
return self::closeModal($window);
|
|
}
|
|
|
|
/**
|
|
* Close modal with javascript.
|
|
*
|
|
* @param string $window
|
|
* @static
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
static public function closeModal($window = 'self', $location = 'this')
|
|
{
|
|
$js = self::start();
|
|
$js .= "if($window.location.href == self.location.href){ $window.window.close();}";
|
|
$js .= "else{ $window.$.cookie('selfClose', 1);$window.$.closeModal(null, '$location');}";
|
|
$js .= self::end();
|
|
return $js;
|
|
}
|
|
|
|
/**
|
|
* Export the config vars for createLink() js version.
|
|
*
|
|
* @static
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
static public function exportConfigVars()
|
|
{
|
|
if(!function_exists('json_encode')) return false;
|
|
|
|
global $app, $config, $lang;
|
|
$defaultViewType = $app->getViewType();
|
|
$themeRoot = $app->getWebRoot() . 'theme/';
|
|
$moduleName = $app->getModuleName();
|
|
$methodName = $app->getMethodName();
|
|
$clientLang = $app->getClientLang();
|
|
$requiredFields = '';
|
|
if(isset($config->$moduleName->$methodName->requiredFields)) $requiredFields = str_replace(' ', '', $config->$moduleName->$methodName->requiredFields);
|
|
|
|
$jsConfig = new stdclass();
|
|
$jsConfig->webRoot = $config->webRoot;
|
|
$jsConfig->cookieLife = ceil(($config->cookieLife - time()) / 86400);
|
|
$jsConfig->requestType = $config->requestType;
|
|
$jsConfig->pathType = $config->pathType;
|
|
$jsConfig->requestFix = $config->requestFix;
|
|
$jsConfig->moduleVar = $config->moduleVar;
|
|
$jsConfig->methodVar = $config->methodVar;
|
|
$jsConfig->viewVar = $config->viewVar;
|
|
$jsConfig->defaultView = $defaultViewType;
|
|
$jsConfig->themeRoot = $themeRoot;
|
|
$jsConfig->currentModule = $moduleName;
|
|
$jsConfig->currentMethod = $methodName;
|
|
$jsConfig->clientLang = $clientLang;
|
|
$jsConfig->requiredFields = $requiredFields;
|
|
$jsConfig->router = $app->server->PHP_SELF;
|
|
$jsConfig->timeout = $config->timeout;
|
|
|
|
$jsLang = new stdclass();
|
|
$jsLang->submitting = $lang->submitting;
|
|
$jsLang->save = $lang->save;
|
|
$jsLang->timeout = $lang->timeout;
|
|
|
|
$js = self::start(false);
|
|
$js .= 'var config=' . json_encode($jsConfig) . ";\n";
|
|
$js .= 'var lang=' . json_encode($jsLang) . ";\n";
|
|
$js .= self::end();
|
|
echo $js;
|
|
}
|
|
|
|
/**
|
|
* Execute some js code.
|
|
*
|
|
* @param string $code
|
|
* @static
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
static public function execute($code)
|
|
{
|
|
$js = self::start($full = false);
|
|
$js .= $code;
|
|
$js .= self::end();
|
|
echo $js;
|
|
}
|
|
|
|
/**
|
|
* Set js value.
|
|
*
|
|
* @param string $key
|
|
* @param mix $value
|
|
* @static
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
static public function set($key, $value)
|
|
{
|
|
$js = self::start(false);
|
|
if(is_numeric($value))
|
|
{
|
|
$js .= "$key = $value";
|
|
}
|
|
elseif(is_array($value) or is_object($value) or is_string($value))
|
|
{
|
|
/* Fix for auto-complete when user is number.*/
|
|
if(is_array($value) or is_object($value))
|
|
{
|
|
$value = (array)$value;
|
|
foreach($value as $k => $v)
|
|
{
|
|
if(is_numeric($v)) $value[$k] = (string)$v;
|
|
}
|
|
}
|
|
|
|
$value = json_encode($value);
|
|
$js .= "$key = $value";
|
|
}
|
|
elseif(is_bool($value))
|
|
{
|
|
$value = $value ? 'true' : 'false';
|
|
$js .= "$key = $value";
|
|
}
|
|
else
|
|
{
|
|
$value = addslashes($value);
|
|
$js .= "$key = '$value'";
|
|
}
|
|
$js .= self::end();
|
|
echo $js;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* css class.
|
|
*
|
|
* @package front
|
|
*/
|
|
class css
|
|
{
|
|
/**
|
|
* Import a css file.
|
|
*
|
|
* @param string $url
|
|
* @param string $version
|
|
* @access public
|
|
* @return vod
|
|
*/
|
|
public static function import($url, $version = '')
|
|
{
|
|
if(!$version) $version = filemtime(__FILE__);
|
|
echo "<link rel='stylesheet' href='$url?v=$version' type='text/css' media='screen' />\n";
|
|
}
|
|
|
|
/**
|
|
* Print a css code.
|
|
*
|
|
* @param string $css
|
|
* @static
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public static function internal($css)
|
|
{
|
|
echo "<style>$css</style>";
|
|
}
|
|
}
|