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

📄 timeperiod.php

📁 Network Administration Visualized 网络管理可视化源码
💻 PHP
字号:
<?php/* $Id: timeperiod.php 2674 2004-04-28 13:03:41Z mortenv $ * * Copyright 2002-2004 UNINETT AS *  * This file is part of Network Administration Visualized (NAV) * * NAV is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * NAV is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with NAV; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA * * * Authors: Andreas Aakre Solberg <andreas.solberg@uninett.no> * */?><table width="100%" class="mainWindow"><tr><td class="mainWindowHead"><?phpecho '<p>Setup profile</p>';if (get_get('subaction')) {	session_set('subaction', get_get('subaction') );}if (get_get('pid')) {	session_set('periode_pid', get_get('pid'));}//print "<p>Pid now: " . session_get('periode_pid');if (get_get('tid')) {	session_set('periode_tid', get_get('tid'));}//print "<p>Tid now: " . session_get('periode_tid');$utstginfo = $dbh->brukerprofilInfo(session_get('periode_pid') );echo '<div class="subheader">' . $utstginfo[0] . '</div>';?></td></tr><tr><td><?phpinclude("loginordie.php");loginOrDie();echo '<p>' . gettext('You may add or delete time periods on a whole week, weekday or weekend basis. To add a new time period simply click on the 24 hour schedule at the start time you wish. To delete a time period use the trash can.');echo '<p>' . gettext('Each time period is defined by a set of alert subscriptions ([<i>filter group</i>, <i>alarm address</i>] tuples). To edit a timeperiod open it.');if (!$dbh->permissionProfile( session_get('uid'), session_get('periode_pid') ) ) {    echo "<h2>Security violation</h2>";    exit(0);} if ( isset($coor1) OR isset($coor2) ) {		if (isset($coor2)) {		$dtype = 3; $coor=$coor2;	} else {		$dtype = 2; $coor=$coor1;	}		preg_match("/^\?[0-9]+,([0-9]+)$/i", $coor, $match);	$units = round((($match[1]-10) / 7.5) + 12) % 48;	$time = floor($units / 2);	$min = ($units % 2) * 30; 	if ($min > 9 ) $klokke = "$time:$min"; else	$klokke = "$time:0$min";		$tidsid = $dbh->nyTidsperiode($dtype, $klokke, session_get('periode_pid') );		if ($tidsid > 0) { 	echo gettext("<p><font size=\"+3\">OK</font>, a new time periods is created. Go to the form below to setup alert for this time period.");	  session_set('subaction', "endre");	} else {	echo "<p><font size=\"+3\">" . gettext('An error</font> occured, a new profile is <b>not</b> created."');	}		session_set('periode_tid', $tidsid);  }function helgdescr($helg) {	switch($helg) {		case 1 : return gettext('All week');		case 2 : return gettext('Weekdays');		case 3 : return gettext('Weekend');		default: return gettext('Uknown');	}}if (session_get('subaction') == 'slett' ) {	if (session_get('periode_pid') > 0) { 			$dbh->slettPeriode(session_get('periode_tid') );		$adresse='';		print "<p><font size=\"+3\">" . gettext("OK</font>, time period (") . session_get('periode_pid'). gettext(") is removed.");	} else {		print "<p><font size=\"+3\">" . gettext("An error</font> occured, the time period is <b>not</b> removed.");	}	session_set('subaction', 'idle');  }$konflikter = $dbh->listPeriodekonflikter(session_get('periode_pid'));if (sizeof($konflikter) > 0) {    $kl = new Lister (423,                array('Dagtype', 'Tid', 'Antall kolliderende tidsperioder'),                array(30, 20, 50),                array('left', 'left', 'left'),                array(false, false, false),                0    );    for ($i = 0; $i < sizeof($konflikter); $i++) {        $kl->addElement( array($konflikter[$i][1],$konflikter[$i][2],$konflikter[$i][0])  );    }    echo '<p><table width="100%"><tr><td><img alt="Warning" align="top" src="images/warning.png"></td><td>';    echo '<h2>' . gettext("Conflicts") . '</h2>';    echo '<p>' . gettext("You have setup two or more time periods in which starts at the same time. Remove or change some of the time periods causing the conflict and this warning will go away.");    echo '<p>' . gettext("Here is a list of occuring conflicts:");    echo $kl->getHTML();    echo  '</td></tr></table>'; }// dette er for hverdager mandag til fredag$l[0] = new Lister( 108,		array(gettext('Time'), gettext('Weekday'), gettext('#addresses'), 			gettext('#equip grp.'), gettext('Options..') ),		array(20, 20, 20, 20, 20),		array('right', 'center', 'right', 'right', 'right'),		array(true, false, false, false, false),		0	);// dette er tabellen for helga, l酶rdag og s酶ndag$l[1] = new Lister( 109,		array(gettext('Time'), gettext('Weekday'), gettext('#addresses'), 			gettext('#equip. grp.'), gettext('Options..') ),		array(20, 20, 20, 20, 20),		array('right', 'center', 'right', 'right', 'right'),		array(true, false, false, false, false),		0	);if ( get_exist('sortid') ) {	$l[0]->setSort(get_get('sort'), get_get('sortid') );	$l[1]->setSort(get_get('sort'), get_get('sortid') );	}$perioder = $dbh->listPerioder(session_get('periode_pid'), $l[0]->getSort() );for ($i = 0; $i < sizeof($perioder); $i++) {		if ($perioder[$i][2] > 9) $t = $perioder[$i][2]; else $t = "0" . $perioder[$i][2];	if ($perioder[$i][3] > 9) $m = $perioder[$i][3]; else $m = "0" . $perioder[$i][3];	$klokke = "$t:$m";	$valg = '<a href="index.php?action=periode-setup&subaction=endre&tid=' . $perioder[$i][0] . 		'"><img alt="Open" src="icons/open2.gif" border=0></a>&nbsp;' .		'<a href="index.php?subaction=slett&tid=' . $perioder[$i][0] . '">' .		'<img alt="Delete" src="icons/delete.gif" border=0></a>';		if ($perioder[$i][4] > 0 ) 		{ $aa = $perioder[$i][4]; }	else 		{ $aa = "<img alt=\"Ingen\" src=\"icons/stop.gif\">"; }		if ($perioder[$i][5] > 0 ) 		{ $au = $perioder[$i][5]; }	else 		{ $au = "<img alt=\"Ingen\" src=\"icons/stop.gif\">"; }		// mangdag til fredag	if (($perioder[$i][1] == 1) OR ($perioder[$i][1] == 2)) {		$l[0]->addElement( array($klokke,			helgdescr($perioder[$i][1] ),			$aa,  // # adresser			$au,  // # utstyrsgrupper			$valg			) 		);		$kt[0][] = array($perioder[$i][2], $perioder[$i][3]);	}		// l酶rdag og s酶ndag	if (($perioder[$i][1] == 1) OR ($perioder[$i][1] == 3)) {		$l[1]->addElement( array($klokke,				helgdescr($perioder[$i][1] ),    				 $aa,  // # adresser				 $au,  // # utstyrsgrupper				 $valg				) 	   );		$kt[1][] = array($perioder[$i][2], $perioder[$i][3]);	}}print "<h3>" . gettext("Monday - Friday") . "</h3>";print "<table width=\"100%\"><tr><td>\n";print "<A HREF=\"index.php?action=periode&subsaction=new&pid=" . session_get('periode_pid') . "&coor1=\">\n";print "<img border=\"0\" class=\"ilink\" title=\"Create new time period here\" alt=\"Timeplan Man-Fre\" src=\"timeplan.php?";$c = 0;foreach ($kt[0] as $el) {     print "t[" . $c . "]=" . $kt[0][$c][0] . "&m[" . $c . "]=" . $kt[0][$c++][1] . "&";}print "\" ISMAP></A></td><td valign=\"top\">";$tabell = $l[0]->getHTML();echo $tabell;print "</td></tr></table>";print "<h3>" . gettext("Saturday and Sunday") . "</h3>";print '<table width="100%"><tr><td>';print "<A HREF=\"index.php?action=periode&subaction=new&pid=" . session_get('periode_pid') . "&coor2=\"><img border=\"0\" class=\"ilink\" alt=\"Timeplan L酶r-S酶n\" title=\"Create new time period here\" src=\"timeplan.php?";$c = 0;foreach ($kt[1] as $el) {     print "t[" . $c . "]=" . $kt[1][$c][0] . "&m[" . $c . "]=" . $kt[1][$c++][1] . "&";}print '" ISMAP></A></td><td valign="top">';print $l[1]->getHTML();print '</td></tr></table>';print "<p>[ <a href=\"index.php?action=periode\">" . gettext("update") . "<img src=\"icons/refresh.gif\" class=\"refresh\" alt=\"oppdater\" border=\"0\"> ]</a> ";print gettext("Number of periods: ") . sizeof($perioder);echo '<p><form name="finnished" method="post" action="index.php?action=profil">';echo '<input align="right" type="submit" name="Submit" value="' . gettext('Finished setting up profile') . '">';echo '</form>';?></td></tr></table>

⌨️ 快捷键说明

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