summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/classes/cfile.inc.php
diff options
context:
space:
mode:
authorosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-01-13 15:51:21 +0000
committerosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-01-13 15:51:21 +0000
commite9057de8be3f2273d6251b7d0a6095cf978f27f1 (patch)
treed629cc30cf6b96e12032846be3b08add7b0a8237 /frontends/php/include/classes/cfile.inc.php
parent2934d33bae581c7c54502ce02364f10c3b7d7a45 (diff)
- Frontend improvements. (Eugene)
git-svn-id: svn://svn.zabbix.com/trunk@2523 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/classes/cfile.inc.php')
-rw-r--r--frontends/php/include/classes/cfile.inc.php50
1 files changed, 50 insertions, 0 deletions
diff --git a/frontends/php/include/classes/cfile.inc.php b/frontends/php/include/classes/cfile.inc.php
new file mode 100644
index 00000000..bea8d910
--- /dev/null
+++ b/frontends/php/include/classes/cfile.inc.php
@@ -0,0 +1,50 @@
+<?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 CFile extends CTag
+ {
+/* public */
+ function CFile ($name='file',$value="")
+ {
+ parent::CTag("input","no");
+ $this->SetClass("biginput");
+ $this->AddOption("type","file");
+ $this->SetName($name);
+ $this->SetFile($value);
+ }
+ function SetName($value='textarea')
+ {
+ if(!is_string($value))
+ {
+ return $this->error("Incorrect value for SetName [$value]");
+ }
+ return $this->AddOption("name",$value);
+ }
+ function SetFile($value="")
+ {
+ if(!is_string($value))
+ {
+ return $this->error("Incorrect value for SetFile [$value]");
+ }
+ return $this->AddOption("value",$value);
+ }
+ }
+?>