From 75af9e42de363b1f9015b453d72bd87cb3458ae8 Mon Sep 17 00:00:00 2001 From: Michael Larabel Date: Wed, 1 Oct 2008 17:44:20 -0400 Subject: pts-core: Move test option handling to using pts_test_options() and new pts_test_option() objects --- pts-core/objects/pts_test_option.php | 79 ++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 pts-core/objects/pts_test_option.php (limited to 'pts-core/objects/pts_test_option.php') diff --git a/pts-core/objects/pts_test_option.php b/pts-core/objects/pts_test_option.php new file mode 100644 index 0000000..12b2a46 --- /dev/null +++ b/pts-core/objects/pts_test_option.php @@ -0,0 +1,79 @@ +. +*/ + +class pts_test_option +{ + var $identifier = ""; + var $option_name = ""; + var $prefix = ""; + var $options = array(); + + public function __construct($identifier, $option) + { + $this->identifier = $identifier; + $this->option_name = $option; + } + public function set_option_prefix($prefix) + { + $this->prefix = $prefix; + } + public function get_identifier() + { + return $this->identifier; + } + public function get_name() + { + return $this->option_name; + } + public function get_option_prefix() + { + return $this->prefix; + } + public function add_option($name, $value) + { + array_push($this->options, array($name, $value)); + } + public function get_all_option_names() + { + $names = array(); + + for($i = 0; $i < $this->option_count(); $i++) + array_push($names, $this->get_option_name($i)); + + return $names; + } + public function get_option_name($index) + { + return $this->options[$index][0]; + } + public function get_option_value($index) + { + return $this->options[$index][1]; + } + public function option_count() + { + return count($this->options); + } +} + +?> -- cgit