3 declare(strict_types=1);
28 public function __construct(
int $a_id = 0,
bool $a_call_by_reference =
true)
40 return $obj_def->getLTIProviderTypes();
50 $global_roles = $rbacreview->getGlobalRoles();
55 foreach ($filtered_roles as $role) {
57 $roles[$role] = $obj_role->getTitle();
69 $this->db->manipulate(
"DELETE FROM lti_ext_consumer_otype WHERE consumer_id = " . $this->db->quote($a_consumer_id,
"integer"));
72 $query =
"INSERT INTO lti_ext_consumer_otype (consumer_id, object_type) VALUES (%s, %s)";
73 $types = array(
"integer",
"text");
74 foreach ($a_obj_types as $ot) {
75 $values = array($a_consumer_id, $ot);
76 $this->db->manipulateF(
$query, $types, $values);
89 $result =
$ilDB->query(
"SELECT object_type FROM lti_ext_consumer_otype WHERE consumer_id = " .
$ilDB->quote($a_consumer_id,
"integer"));
92 while ($record =
$ilDB->fetchAssoc($result)) {
93 $obj_ids[] = $record[
'object_type'];
101 public static function isEnabledForType(
string $a_type):
bool 108 $query =
'select id from lti_ext_consumer join lti_ext_consumer_otype on id = consumer_id ' .
109 'WHERE active = ' .
$db->
quote(1,
'integer') .
' ' .
110 'AND object_type = ' .
$db->
quote($a_type,
'text');
112 while ($row =
$res->fetchObject()) {
123 public static function getEnabledConsumersForType(
string $a_type): array
130 $query =
'select distinct(id) id from lti_ext_consumer join lti_ext_consumer_otype on id = consumer_id ' .
131 'WHERE active = ' .
$db->
quote(1,
'integer') .
' ' .
132 'AND object_type = ' .
$db->
quote($a_type,
'text');
136 $consumers = array();
137 while ($row =
$res->fetchObject()) {
151 SELECT object_reference.ref_id FROM object_reference, tree, object_data 152 WHERE tree.parent = %s 153 AND object_data.type = %s 154 AND object_reference.ref_id = tree.child 155 AND object_reference.obj_id = object_data.obj_id',
156 array(
'integer',
'text'),
159 while ($row =
$GLOBALS[
'DIC']->database()->fetchAssoc(
$res)) {
160 $lti_ref_id = (
int) $row[
'ref_id'];
173 $query =
'select ref_id, title from lti2_consumer join lti_ext_consumer ' .
174 'on id = ext_consumer_id where enabled = ' .
$db->
quote(1,
'integer');
181 $item[
'ref_id'] = $row->ref_id;
182 $item[
'title'] = $row->title;
static getLogger(string $a_component_id)
Get component logger.
static readReleaseObjects()
Read released objects.
quote($value, string $type)
parses the objects.xml it handles the xml-description of all ilias objects
static lookupLTISettingsRefId()
Lookup ref_id.
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
query(string $query)
Run a (read-only) Query on the database.
__construct(int $a_id=0, bool $a_call_by_reference=true)
__construct(Container $dic, ilPlugin $plugin)
saveConsumerObjectTypes(int $a_consumer_id, array $a_obj_types)
static getActiveObjectTypes(int $a_consumer_id)