本文整理汇总了PHP中icms_core_Debug::setDeprecated方法的典型用法代码示例。如果您正苦于以下问题:PHP icms_core_Debug::setDeprecated方法的具体用法?PHP icms_core_Debug::setDeprecated怎么用?PHP icms_core_Debug::setDeprecated使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类icms_core_Debug
的用法示例。
在下文中一共展示了icms_core_Debug::setDeprecated方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: xoopsSmilies
/**
* @deprecated This is not used anywhere in the core
* @todo Remove after 2.0
* Displays smilie image buttons used to insert smilie codes to a target textarea in a form
* $textarea_id is a unique of the target textarea
*/
function xoopsSmilies($textarea_id)
{
icms_core_Debug::setDeprecated('icms_form_elements_Dhtmltextarea.', sprintf(_CORE_REMOVE_IN_VERSION, '2.0'));
$smiles =& icms_core_DataFilter::getSmileys();
if (empty($smileys)) {
if ($result = icms::$xoopsDB->query("SELECT * FROM " . icms::$xoopsDB->prefix('smiles') . " WHERE display='1'")) {
while ($smiles = icms::$xoopsDB->fetchArray($result)) {
//hack smilies move for the smilies !!
echo "<img src='" . ICMS_UPLOAD_URL . "/" . htmlspecialchars($smiles['smile_url']) . "' border='0' onmouseover='style.cursor=\"hand\"' alt='' onclick='xoopsCodeSmilie(\"" . $textarea_id . "_tarea\", \" " . $smiles['code'] . " \");' />";
//fin du hack
}
}
} else {
$count = count($smiles);
for ($i = 0; $i < $count; $i++) {
if ($smiles[$i]['display'] == 1) {
//hack bis
echo "<img src='" . ICMS_UPLOAD_URL . "/" . icms_core_DataFilter::htmlSpecialChars($smiles['smile_url']) . "' border='0' alt='' onclick='xoopsCodeSmilie(\"" . $textarea_id . "_tarea\", \" " . $smiles[$i]['code'] . " \");' onmouseover='style.cursor=\"hand\"' />";
//fin du hack
}
}
}
//hack for more
echo " [<a href='#moresmiley' onmouseover='style.cursor=\"hand\"' alt='' onclick='openWithSelfMain(\"" . ICMS_URL . "/misc.php?action=showpopups&type=smilies&target=" . $textarea_id . "_tarea\",\"smilies\",300,475);'>" . _MORE . "</a>]";
}
示例2: icms_core_Versionchecker
/**
* Access the only instance of this class
*
* @static
* @staticvar object
*
* @return object
*
*/
public static function &getInstance()
{
static $instance;
if (!isset($instance)) {
$instance = new icms_core_Versionchecker();
}
$self->_deprecated = icms_core_Debug::setDeprecated('icms_core_Versionchecker', sprintf(_CORE_REMOVE_IN_VERSION, '1.4'));
return $instance;
}
示例3: XoopsCommentRenderer
/**
* Access the only instance of this class
*
* @param object $tpl reference to a {@link Smarty} object
* @param boolean $use_icons
* @param boolean $do_iconcheck
* @return
**/
static function &instance(&$tpl, $use_icons = true, $do_iconcheck = false)
{
$class = new XoopsCommentRenderer();
$class->_deprecated = icms_core_Debug::setDeprecated('icms_data_comment_Renderer', sprintf(_CORE_REMOVE_IN_VERSION, '1.4'));
static $instance;
if (!isset($instance)) {
$instance = new icms_data_comment_Renderer($tpl, $use_icons, $do_iconcheck);
}
return $instance;
}
示例4: __construct
public function __construct($title, $name, $action, $method = "post", $addtoken = false)
{
parent::__construct($title, $name, $action, $method, $addtoken);
$this->_deprecated = icms_core_Debug::setDeprecated('icms_form_Simple', sprintf(_CORE_REMOVE_IN_VERSION, '1.4'));
}
示例5: __construct
public function __construct()
{
icms_core_Debug::setDeprecated('icms_core_Debug', sprintf(_CORE_REMOVE_IN_VERSION, '1.4'));
}
示例6: user_viewoid
function user_viewoid()
{
icms_core_Debug::setDeprecated('$this->getVar("user_viewoid")', sprintf(_CORE_REMOVE_IN_VERSION, '1.4'));
return $this->getVar('user_viewoid');
}
示例7: __construct
public function __construct(&$db)
{
parent::__construct($db);
$this->_deprecated = icms_core_Debug::setDeprecated('icms_image_category_Handler', sprintf(_CORE_REMOVE_IN_VERSION, '1.4'));
}
示例8: __construct
public function __construct($caption, $name, $editor_configs = null, $noHtml = false, $OnFailure = "")
{
parent::__construct($caption, $name, $editor_configs, $noHtml, $OnFailure);
$this->_deprecated = icms_core_Debug::setDeprecated('icms_form_elements_Editor', sprintf(_CORE_REMOVE_IN_VERSION, '1.4'));
}
示例9: __construct
/**
* Construtor
*
* @param string $caption
* @param string $name
* @param mixed $value Value for the Select attribute
* @param string $cat Name of the Category
*/
function __construct($caption, $name, $value = null, $cat = null)
{
parent::__construct($caption, $name, $value, $cat);
$this->_deprecated = icms_core_Debug::setDeprecated('icms_form_elements_select_Image', sprintf(_CORE_REMOVE_IN_VERSION, '1.4'));
}
示例10: __construct
public function __construct($caption, $name, $maxfilesize = '4096000')
{
parent::__construct($caption, $name, $maxfilesize);
$this->_deprecated = icms_core_Debug::setDeprecated('icms_config_item_Object', sprintf(_CORE_REMOVE_IN_VERSION, '1.4'));
}
示例11: XoopsFormElementTray
public function XoopsFormElementTray($caption, $delimeter = " ", $name = "")
{
$this->__construct($caption, $delimeter, $name);
$this->_deprecated = icms_core_Debug::setDeprecated('icms_form_elements_Tray', sprintf(_CORE_REMOVE_IN_VERSION, '1.4'));
}
示例12: getUserRankList
/**
* Gets list of all user ranks in the database
* @deprecated Use SystemUserrankHandler->getList
* @todo Remove in version 1.4
*
* @return array $ret list of user ranks
*/
public static function getUserRankList()
{
icms_core_Debug::setDeprecated('SystemUserrankHandler->getList', sprintf(_CORE_REMOVE_IN_VERSION, '1.4'));
return icms_getModuleHandler("userrank", "system")->getList(icms_buildCriteria(array("rank_special" => 1)));
}
示例13:
<?php
// $Id: xoopsuser.php 10337 2010-07-13 15:37:14Z skenow $
// this file is for backward compatibility only
if (!defined('ICMS_ROOT_PATH')) {
exit;
}
icms_core_Debug::setDeprecated('', 'class/xoopsuser.php file will be removed in ImpressCMS 1.4 - use kernel/user.php');
/**
* Include the user class
* @deprecated use kernel/user.php instead
* @todo Remove this file in 1.4
*/
require_once ICMS_ROOT_PATH . '/kernel/user.php';
示例14: XoopsFormTextArea
/**
* Constuctor
*
* @param string $caption caption
* @param string $name name
* @param string $value initial content
* @param int $rows number of rows
* @param int $cols number of columns
*/
function XoopsFormTextArea($caption, $name, $value = "", $rows = 5, $cols = 50)
{
parent::__construct($caption, $name, $value, $rows, $cols);
$this->_deprecated = icms_core_Debug::setDeprecated('icms_form_elements_Textarea', sprintf(_CORE_REMOVE_IN_VERSION, '1.4'));
}
示例15: __construct
public function __construct($keywords, $singlewords = false, $replace_callback = null)
{
parent::__construct($keywords, $singlewords, $replace_callback);
$this->_deprecated = icms_core_Debug::setDeprecated('icms_ipf_Highlighter', sprintf(_CORE_REMOVE_IN_VERSION, '1.4'));
}