version 1.1.1.1, 2007/11/02 20:55:00
|
version 1.1.1.1.2.1, 2007/11/13 07:36:19
|
Line 24
|
Line 24
|
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
# SUCH DAMAGE. |
# SUCH DAMAGE. |
# |
# |
|
# $Paefchen$ |
# $MCom: portstools/tinderbox/webui/module/modulePorts.php,v 1.11 2007/06/09 22:09:12 marcus Exp $ |
# $MCom: portstools/tinderbox/webui/module/modulePorts.php,v 1.11 2007/06/09 22:09:12 marcus Exp $ |
# |
# |
|
|
require_once 'module/module.php'; |
|
|
|
class modulePorts extends module { |
class modulePorts extends module { |
|
|
function modulePorts() { | public function display_describe_port( $port_id ) { |
$this->module(); | |
} | |
|
|
function display_describe_port( $port_id ) { |
|
|
|
$ports = $this->TinderboxDS->getAllPortsByPortID( $port_id ); |
$ports = $this->TinderboxDS->getAllPortsByPortID( $port_id ); |
|
|
if( is_array( $ports ) && count( $ports ) > 0 ) { |
if( is_array( $ports ) && count( $ports ) > 0 ) { |
Line 73 class modulePorts extends module {
|
Line 68 class modulePorts extends module {
|
return $this->template_parse( 'describe_port.tpl' ); |
return $this->template_parse( 'describe_port.tpl' ); |
} |
} |
|
|
function get_list_data( $build_name, $ports ) { | public function get_list_data( $build_name, $ports ) { |
global $loguri; |
global $loguri; |
global $errorloguri; |
global $errorloguri; |
global $pkguri; |
global $pkguri; |
Line 160 class modulePorts extends module {
|
Line 155 class modulePorts extends module {
|
return $data; |
return $data; |
} |
} |
} |
} |
|
|
?> |
?> |