Use new code style

This commit is contained in:
David Stone
2025-02-07 19:02:33 -07:00
parent 0181024ae1
commit 8433379d90
672 changed files with 37107 additions and 45249 deletions

View File

@ -109,7 +109,5 @@ class Customer_Query extends Query {
// $query['type'] = 'customer';
parent::__construct($query);
} // end __construct;
} // end class Customer_Query;
}
}

View File

@ -22,11 +22,11 @@ defined('ABSPATH') || exit;
final class Customers_Meta_Table extends Table {
/**
* Table name
*
* @since 2.0.0
* @var string
*/
* Table name
*
* @since 2.0.0
* @var string
*/
protected $name = 'customermeta';
/**
@ -55,8 +55,7 @@ final class Customers_Meta_Table extends Table {
public function __construct() {
parent::__construct();
} // end __construct;
}
/**
* Setup the database schema
@ -76,7 +75,5 @@ final class Customers_Meta_Table extends Table {
PRIMARY KEY (meta_id),
KEY wu_customer_id (wu_customer_id),
KEY meta_key (meta_key({$max_index_length}))";
} // end set_schema;
} // end class Customers_Meta_Table;
}
}

View File

@ -129,5 +129,4 @@ class Customers_Schema extends Schema {
),
);
} // end class Customers_Schema;
}

View File

@ -22,11 +22,11 @@ defined('ABSPATH') || exit;
final class Customers_Table extends Table {
/**
* Table name
*
* @since 2.0.0
* @var string
*/
* Table name
*
* @since 2.0.0
* @var string
*/
protected $name = 'customers';
/**
@ -66,8 +66,7 @@ final class Customers_Table extends Table {
public function __construct() {
parent::__construct();
} // end __construct;
}
/**
* Setup the database schema
@ -91,8 +90,7 @@ final class Customers_Table extends Table {
signup_form varchar(40) DEFAULT 'by-admin',
PRIMARY KEY (id),
KEY user_id (user_id)";
} // end set_schema;
}
/**
* Adds the signup_form column.
@ -109,17 +107,14 @@ final class Customers_Table extends Table {
// Maybe add column
if (empty($result)) {
$query = "ALTER TABLE {$this->table_name} ADD COLUMN `signup_form` varchar(40) default 'by-admin' AFTER `ips`;";
$result = $this->get_db()->query($query);
} // end if;
}
// Return success/fail
return $this->is_success($result);
} // end __20210508;
}
/**
* Adds the signup_form column.
@ -133,27 +128,22 @@ final class Customers_Table extends Table {
// Maybe add column
if (empty($result)) {
$query_set = "SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION';";
$result_set = $this->get_db()->query($query_set);
if ($this->is_success($result_set) === false) {
return false;
} // end if;
}
$query = "ALTER TABLE {$this->table_name} ADD COLUMN `signup_form` varchar(40) default 'by-admin' AFTER `ips`;";
$result = $this->get_db()->query($query);
} // end if;
}
// Return success/fail
return $this->is_success($result);
} // end __20210607;
}
/**
* Fixes the datetime columns to accept null.
@ -169,21 +159,15 @@ final class Customers_Table extends Table {
);
foreach ($null_columns as $column) {
$query = "ALTER TABLE {$this->table_name} MODIFY COLUMN `{$column}` datetime DEFAULT NULL;";
$result = $this->get_db()->query($query);
if (!$this->is_success($result)) {
if ( ! $this->is_success($result)) {
return false;
} // end if;
} // end foreach;
}
}
return true;
} // end __20230601;
} // end class Customers_Table;
}
}