27 protected int $id = 0;
37 $this->db = $DIC->database();
50 $ilDB = $DIC->database();
55 $set =
$ilDB->query(
"SELECT * FROM badge_image_templ_type");
56 while ($row =
$ilDB->fetchAssoc($set)) {
57 $types[$row[
"tmpl_id"]][] = $row[
"type_id"];
60 $set =
$ilDB->query(
"SELECT * FROM badge_image_template" .
62 while ($row =
$ilDB->fetchAssoc($set)) {
63 $row[
"types"] = (array) ($types[$row[
"id"]] ?? null);
66 $obj->importDBRow($row);
81 foreach (self::getInstances() as $tmpl) {
82 if (!count($tmpl->getTypes()) || in_array($a_type_unique_id, $tmpl->getTypes(),
true)) {
95 protected function setId(
int $a_id): void
107 $this->title = trim($a_value);
117 $this->image = trim($a_value);
128 public function setTypes(array $types = null): void
130 $this->types = is_array($types)
131 ? array_unique($types)
146 if ($this->
getId() &&
147 $a_upload_meta[
"tmp_name"]) {
154 $suffix = strtolower(array_pop($exp));
155 $tgt =
$path .
"img" . $this->
getId() .
"." . $suffix;
166 if ($this->
getId()) {
171 $exp = explode(
".", $this->
getImage());
172 $suffix = strtolower(array_pop($exp));
183 string $a_subdir = null
188 $path = $storage->getAbsolutePath() .
"/";
191 $path .= $a_subdir .
"/";
193 if (!is_dir(
$path)) {
206 protected function read(
int $a_id): void
210 $set =
$ilDB->query(
"SELECT * FROM badge_image_template" .
211 " WHERE id = " .
$ilDB->quote($a_id,
"integer"));
212 if (
$ilDB->numRows($set)) {
213 $row =
$ilDB->fetchAssoc($set);
225 $set =
$ilDB->query(
"SELECT * FROM badge_image_templ_type WHERE tmpl_id = " .
$ilDB->quote($a_id,
"integer"));
226 while ($row =
$ilDB->fetchAssoc($set)) {
227 $res[] = $row[
"type_id"];
239 $this->
setId($a_row[
"id"]);
249 if ($this->
getId()) {
254 $id =
$ilDB->nextId(
"badge_image_template");
258 $fields[
"id"] = array(
"integer", $id);
260 $ilDB->insert(
"badge_image_template", $fields);
269 if (!$this->
getId()) {
277 "badge_image_template",
279 array(
"id" => array(
"integer", $this->
getId()))
285 public function delete():
void 289 if (!$this->
getId()) {
296 $ilDB->manipulate(
"DELETE FROM badge_image_template" .
297 " WHERE id = " .
$ilDB->quote($this->getId(),
"integer"));
306 "title" => [
"text", $this->
getTitle()],
307 "image" => [
"text", $this->
getImage()]
315 if ($this->
getId()) {
316 $ilDB->manipulate(
"DELETE FROM badge_image_templ_type" .
317 " WHERE tmpl_id = " .
$ilDB->quote($this->getId(),
"integer"));
322 "tmpl_id" => array(
"integer", $this->
getId()),
323 "type_id" => array(
"text",
$type)
325 $ilDB->insert(
"badge_image_templ_type", $fields);
uploadImage(array $a_upload_meta)
static getInstancesByType(string $a_type_unique_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getPropertiesForStorage()
importDBRow(array $a_row)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getValidFilename(string $a_filename)
getFilePath(int $a_id, string $a_subdir=null)
Init file system storage.
__construct(int $a_id=null)
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
static moveUploadedFile(string $a_file, string $a_name, string $a_target, bool $a_raise_errors=true, string $a_mode="move_uploaded")
move uploaded file
setTitle(string $a_value)
setTypes(array $types=null)
setImage(string $a_value)