From e618cdb494702dee8a62221bbafe2da61faba308 Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Wed, 14 Apr 2021 00:22:58 +0200 Subject: Make Concert constructor public. Also allow it to default initialize when passing no args. Not entirely sure about making this interface public. --- includes/concert.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'includes/concert.php') diff --git a/includes/concert.php b/includes/concert.php index 7453319..3084eb4 100644 --- a/includes/concert.php +++ b/includes/concert.php @@ -32,7 +32,7 @@ if ( !class_exists('GiglogAdmin_Concert') ) { * so this constructor can be used to construct the object * directly from the database row. */ - private function __construct($attrs) + public function __construct($attrs = []) { $this->id = isset($attrs->id) ? $attrs->id : NULL; $this->band = isset($attrs->band) ? $attrs->band : NULL; @@ -59,7 +59,9 @@ if ( !class_exists('GiglogAdmin_Concert') ) { static function find_cid($id) - { global $wpdb; + { + global $wpdb; + if(!empty($id)) { $csql = 'SELECT * FROM wpg_concerts WHERE id="' . $id . '"'; @@ -70,8 +72,8 @@ if ( !class_exists('GiglogAdmin_Concert') ) { } } else - { $arr = array_fill(0, 6, null); - return new GiglogAdmin_Concert($arr); + { + return new GiglogAdmin_Concert(); } } -- cgit v1.2.3