19 declare(strict_types=1);
43 "DELETE FROM skl_level WHERE " 44 .
" skill_id = " .
$ilDB->quote($skill_id,
"integer")
48 public function addLevel(
int $skill_id,
string $a_title,
string $a_description,
string $a_import_id =
""): void
53 $nid =
$ilDB->nextId(
"skl_level");
54 $ilDB->insert(
"skl_level", array(
55 "id" => array(
"integer", $nid),
56 "skill_id" => array(
"integer", $skill_id),
57 "nr" => array(
"integer", $nr + 1),
58 "title" => array(
"text", $a_title),
59 "description" => array(
"clob", $a_description),
60 "import_id" => array(
"text", $a_import_id),
61 "creation_date" => array(
"timestamp",
ilUtil::now())
70 "SELECT MAX(nr) mnr FROM skl_level WHERE " .
71 " skill_id = " .
$ilDB->quote($skill_id,
"integer")
73 $rec =
$ilDB->fetchAssoc($set);
74 return (
int) ($rec[
"mnr"] ?? 0);
86 $and =
" AND id = " .
$ilDB->quote($a_id,
"integer");
90 "SELECT * FROM skl_level WHERE " .
91 " skill_id = " .
$ilDB->quote($skill_id,
"integer") .
96 while ($rec =
$ilDB->fetchAssoc($set)) {
110 "SELECT $a_prop FROM skl_level WHERE " .
111 " id = " .
$ilDB->quote($a_id,
"integer")
113 $rec =
$ilDB->fetchAssoc($set);
115 return isset($rec[$a_prop]) ? (string) $rec[$a_prop] :
null;
138 protected function writeLevelProperty(
int $a_id,
string $a_prop, ?
string $a_value,
string $a_type): void
142 $ilDB->update(
"skl_level", array(
143 $a_prop => array($a_type, $a_value),
145 "id" => array(
"integer", $a_id),
164 foreach ($order as
$id => $o) {
166 "UPDATE skl_level SET " .
167 " nr = " .
$ilDB->quote($cnt,
"integer") .
168 " WHERE id = " .
$ilDB->quote(
$id,
"integer")
179 "DELETE FROM skl_level WHERE " 180 .
" id = " .
$ilDB->quote($a_id,
"integer")
189 "SELECT id, nr FROM skl_level WHERE " .
190 " skill_id = " .
$ilDB->quote($skill_id,
"integer") .
194 while ($rec =
$ilDB->fetchAssoc($set)) {
196 "UPDATE skl_level SET " .
197 " nr = " .
$ilDB->quote($cnt,
"integer") .
198 " WHERE id = " .
$ilDB->quote($rec[
"id"],
"integer")
209 "SELECT * FROM skl_level WHERE " .
210 " id = " .
$ilDB->quote($a_level_id,
"integer")
213 if ($rec =
$ilDB->fetchAssoc($set)) {
214 if ($this->tree_repo->isInAnyTree((
int) $rec[
"skill_id"])) {
lookupLevelSkillId(int $a_id)
writeLevelDescription(int $a_id, string $a_description)
writeLevelProperty(int $a_id, string $a_prop, ?string $a_value, string $a_type)
Interface ilSkillLevelRepository.
Class ilSkillLevelDBRepository.
static now()
Return current timestamp in Y-m-d H:i:s format.
writeLevelTitle(int $a_id, string $a_title)
ilSkillTreeRepository $tree_repo
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
addLevel(int $skill_id, string $a_title, string $a_description, string $a_import_id="")
deleteLevelsOfSkill(int $skill_id)
__construct(ilSkillTreeRepository $tree_repo, ?ilDBInterface $db=null)
updateLevelOrder(array $order)
lookupLevelTitle(int $a_id)
lookupLevelProperty(int $a_id, string $a_prop)
fixLevelNumbering(int $skill_id)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
lookupLevelNumber(int $a_id)
getSkillForLevelId(int $a_level_id)
getMaxLevelNr(int $skill_id)
lookupLevelDescription(int $a_id)
getLevelData(int $skill_id, int $a_id=0)
Returns multiple rows when $a_id is 0 else one or [].