--- FreeBSD/tinderbox/webui/module/moduleBuilds.php 2007/11/02 20:55:00 1.1.1.1 +++ FreeBSD/tinderbox/webui/module/moduleBuilds.php 2007/11/13 07:36:19 1.1.1.1.2.1 @@ -24,18 +24,13 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # +# $Paefchen$ # $MCom: portstools/tinderbox/webui/module/moduleBuilds.php,v 1.6 2005/12/26 22:33:53 marcus Exp $ # -require_once 'module/module.php'; - class moduleBuilds extends module { - function moduleBuilds() { - $this->module(); - } - - function display_list_builds() { + public function display_list_builds() { global $pkgdir; global $pkguri; @@ -109,7 +104,7 @@ class moduleBuilds extends module { } - function get_all_builds() { + public function get_all_builds() { $all_builds_raw = $this->TinderboxDS->getAllBuilds(); $all_builds = array(); foreach( $all_builds_raw as $build ) { @@ -118,4 +113,5 @@ class moduleBuilds extends module { return $all_builds; } } + ?>