ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSkillObjectAdapter.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 {
26  public function __construct()
27  {
28  }
29 
30  public function getObjIdForRefId(int $a_ref_id): int
31  {
32  $trigger_obj_id = ($a_ref_id > 0)
33  ? ilObject::_lookupObjId($a_ref_id)
34  : 0;
35 
36  return $trigger_obj_id;
37  }
38 
39  public function getTypeForObjId(int $a_obj_id): ?string
40  {
41  return ilObject::_lookupType($a_obj_id);
42  }
43 
44  public function getTitleForObjId(int $a_obj_id): string
45  {
46  return ilObject::_lookupTitle($a_obj_id);
47  }
48 }
Class ilBasicSkillObjectAdapter.
static _lookupObjId(int $ref_id)
static _lookupTitle(int $obj_id)
static _lookupType(int $id, bool $reference=false)