A Sample PHP Project for the tts_framework.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

73 lines
2.3 KiB

<?php
declare(strict_types=1);
namespace prj\{{.Root}}\models\{{.Subfolder}};
class {{.File}}_model extends \tts\database\model {
protected $pdo;
protected $table = "test_names";
public function __construct($pdo) {
$this->pdo = $pdo;
}
public function pre_save(): bool {
$missing = $this->get_missing();
if (count($missing)) {
echo "Required fields not set " . implode(",", $missing) . "!";
return false;
}
if ($this->dump_diff()) {
return false; // Opps forgot a field!
}
return true;
}
public function init_demo_table(): void {
$create_table_sql = "CREATE TABLE IF NOT EXISTS `{$this->table}`(
`id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
`first_name` TEXT,
`last_name` TEXT
)";
$this->pdo->query($create_table_sql);
}
public function populate($rows): void {
$dummy = new \tts\database\dummy_data($this->pdo);
$data = [ 'first_name' => \tts\arrays\mocking\rnd_names::get_first_names(),
'last_name' => \tts\arrays\mocking\rnd_names::get_last_names(),
];
$dummy->add_dummy_data($this->table, $rows, $data);
}
public function save_{{.Method}}(array $input): bool {
$set = $this->set_members_by_generator($input);
if ($set === false) {
return false; // Found Validation issues in input
}
try {
$status = $this->save();
} catch (\PDOException $e) {
echo \tts\exceptions\DB_Exception::customMessage($e, "Unable to save changes!");
}
if ($status === self::successful_save) {
return true; // It saved
}
return false; // It did not save
}
public function get_{{.Method}}(int $number_of_users_to_get = 12): \Generator {
if ($number_of_users_to_get === 0) {
return self::empty_generator();
}
try {
$sql = "SELECT * FROM {$this->table} LIMIT {$number_of_users_to_get}";
$result = $this->pdo->query($sql);
return self::pdo_fetch_lazy($result);
} catch (\PDOException $e) {
echo \tts\exceptions\DB_Exception::customMessage($e);
}
}
}