⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 adminerrorview.class.php

📁 一个用PHP编写的
💻 PHP
字号:
<?php	lt_include( PLOG_CLASS_PATH."class/view/admin/admintemplatedview.class.php" );    /**     * \ingroup View     * @private     *	     * Shows an error message to the user     */    class AdminErrorView extends AdminTemplatedView 	{    	/**         * This initializes the class, but normally we'll only have to initialize the parent         */        function AdminErrorView( $blogInfo )        {        	$this->AdminTemplatedView( $blogInfo, "error" );        }        /**         * Sets the error message. This method is equivalent of typing         * $errorView->setValue( "message", "whatever-message-..." ), but using this we         * type less :)         *         * @param message The message we are going to show.         */        function setMessage( $message )        {        	$this->setValue( "message", $message );        }    }?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -