summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/classes
diff options
context:
space:
mode:
authorosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-03-21 14:44:38 +0000
committerosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-03-21 14:44:38 +0000
commit07ea4eb6c1927b132fc294271841066c11ab2955 (patch)
tree05a082481c5e15b9faa047878a75e503e0b1ba15 /frontends/php/include/classes
parentd76992f73658df06227395e4a79c4366294efebe (diff)
downloadzabbix-07ea4eb6c1927b132fc294271841066c11ab2955.tar.gz
zabbix-07ea4eb6c1927b132fc294271841066c11ab2955.tar.xz
zabbix-07ea4eb6c1927b132fc294271841066c11ab2955.zip
- developed remote commads execution on specific actions (Eugene)
- added "URL" module for screens (Eugene) - fix some bugs - clean code git-svn-id: svn://svn.zabbix.com/trunk@2703 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/classes')
-rw-r--r--frontends/php/include/classes/ciframe.inc.php89
1 files changed, 89 insertions, 0 deletions
diff --git a/frontends/php/include/classes/ciframe.inc.php b/frontends/php/include/classes/ciframe.inc.php
new file mode 100644
index 00000000..9e9b4376
--- /dev/null
+++ b/frontends/php/include/classes/ciframe.inc.php
@@ -0,0 +1,89 @@
+<?php
+/*
+** ZABBIX
+** Copyright (C) 2000-2005 SIA Zabbix
+**
+** This program 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.
+**
+** This program 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 this program; if not, write to the Free Software
+** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+**/
+?>
+<?php
+ class CIFrame extends CTag
+ {
+/* public */
+ function CIFrame($src=NULL,$width="100%",$height="100%",$scrolling="no")
+ {
+ parent::CTag("iframe","yes");
+
+ $this->tag_start= "";
+ $this->tag_end = "";
+ $this->tag_body_start = "";
+ $this->tag_body_end = "";
+
+ $this->SetSrc($src);
+ $this->SetWidth($width);
+ $this->SetHeight($height);
+ $this->SetScrolling($scrolling);
+ }
+ function SetSrc($value=NULL)
+ {
+ if(is_null($value))
+ {
+ return $this->DelOption("src");
+ }
+ elseif(!is_string($value))
+ {
+ return $this->error("Incorrect value for SetSrc [$value]");
+ }
+ return $this->AddOption("src",$value);
+ }
+ function SetWidth($value)
+ {
+ if(is_null($value))
+ {
+ return $this->DelOption("width");
+ }
+ elseif(!is_string($value))
+ {
+ return $this->error("Incorrect value for SetWidth [$value]");
+ }
+
+ $this->AddOption("width",$value);
+ }
+ function SetHeight($value)
+ {
+ if(is_null($value))
+ {
+ return $this->DelOption("height");
+ }
+ elseif(!is_string($value))
+ {
+ return $this->error("Incorrect value for SetHeight [$value]");
+ }
+
+ $this->AddOption("height",$value);
+ }
+ function SetScrolling($value)
+ {
+ if(is_null($value)) $value = 'no';
+
+ if($value=='no' && $value=='yes' && $value=='auto')
+ {
+ return $this->error("Incorrect value for SetScrolling [$value]");
+ }
+
+ $this->AddOption("scrolling",$value);
+ }
+ }
+?>