本文整理汇总了PHP中PageGenerator::setTitle方法的典型用法代码示例。如果您正苦于以下问题:PHP PageGenerator::setTitle方法的具体用法?PHP PageGenerator::setTitle怎么用?PHP PageGenerator::setTitle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PageGenerator
的用法示例。
在下文中一共展示了PageGenerator::setTitle方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: ErrorMessage
}
} else {
$err = new ErrorMessage(_("The computer name is already taken."));
}
} else {
$err = new ErrorMessage(_("Invalid computer name."));
}
}
$p = new PageGenerator();
if ($_GET["action"] == "add") {
$title = _("Add a computer");
} else {
$title = _("Edit a computer");
$sidemenu->forceActiveItem("index");
}
$p->setTitle($title);
$p->setSideMenu($sidemenu);
$p->display();
if ($err) {
$err->display();
}
$formfields = array("computername", "computerdescription");
$f = new ValidatingForm();
$f->push(new Table());
if ($_GET["action"] == "add") {
if (in_array("pulse2", $_SESSION["modulesList"])) {
/*
Be more permissive for Pulse 2 computer name, as it will be checked
internally.
*/
$formElt = new InputTpl("computername");
示例2: AuditCodesManager
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with MMC; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
if ($__submod == "audit") {
require_once "localSidebar.php";
}
require "graph/navbar.inc.php";
require_once "modules/base/includes/logging-xmlrpc.inc.php";
require "modules/base/includes/AjaxFilterLog.inc.php";
require_once "includes/auditCodesManager.php";
$auditManager = new AuditCodesManager();
$p = new PageGenerator();
$p->setTitle(_("Event details"));
if (isset($_GET["logref"])) {
$item = "index" . $_GET["logref"];
} else {
$item = "index";
}
$sidemenu->forceActiveItem($item);
$p->setSideMenu($sidemenu);
$p->display();
$log = get_log_by_id($_GET["logid"]);
if ($log[0]["commit"]) {
$style = "audit_ok";
} else {
$style = "audit_nok";
}
$f = new ValidatingForm(array("class" => $style));