} } 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");
* 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));