19 declare(strict_types=1);
43 public function readRid(
int $style_id): string
45 $set = $this->db->queryF(
46 "SELECT rid FROM style_data " .
51 while ($rec = $this->db->fetchAssoc($set)) {
52 return (
string) $rec[
"rid"];
61 $rid = $this->irss->createContainer($stakeholder);
65 "rid" => [
"string", $rid]
68 "id" => [
"integer", $style_id]
76 string $local_zip_path,
79 $rid = $this->irss->createContainerFromLocalZip($local_zip_path, $stakeholder);
83 "rid" => [
"string", $rid]
86 "id" => [
"integer", $style_id]
94 string $local_dir_path,
96 string $container_path =
"",
97 bool $recursive =
true 99 $rid = $this->irss->createContainerFromLocalDir($local_dir_path, $stakeholder, $container_path, $recursive);
103 "rid" => [
"string", $rid]
106 "id" => [
"integer", $style_id]
116 $rid = $this->
readRid($style_id);
132 $this->irss->addStringToContainer($rid, $css,
"style.css");
137 bool $add_random =
true,
138 bool $add_token =
true 140 $rid = $this->
readRid($style_id);
143 $path = $this->irss->getContainerUri(
148 $random = new \ilRandom();
149 $rand = $random->int(1, 999999);
150 $path .=
"?dummy=$rand";
155 $random = new \ilRandom();
156 $rand = $random->int(1, 999999);
157 $path .=
"?dummy=$rand";
168 $rid = $this->
readRid($style_id);
170 return $this->irss->getResourceIdForIdString($rid);
179 $from_rid = $this->
readRid($from_style_id);
180 $to_rid = $this->irss->cloneContainer($from_rid);
181 if ($to_rid !==
"") {
185 "rid" => [
"string", $to_rid]
188 "id" => [
"integer", $to_style_id]
static getWebspaceDir(string $mode="filesystem")
get webspace directory
getPath(int $style_id, bool $add_random=true, bool $add_token=true)
createContainerFromLocalZip(int $style_id, string $local_zip_path, ResourceStakeholder $stakeholder)
writeCss(int $style_id, string $css, ResourceStakeholder $stakeholder)
cloneResourceContainer(int $from_style_id, int $to_style_id)
createRid(int $style_id, ResourceStakeholder $stakeholder)
getResourceIdentification(int $style_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Class ResourceIdentification.
Content style data object factory.
__construct(ilDBInterface $db, InternalDataService $factory, protected IRSSWrapper $irss)
static signFile(string $path_to_file)
Interface ResourceStakeholder.
getOrCreateRid(int $style_id, ResourceStakeholder $stakeholder)
InternalDataService $factory
createContainerFromLocalDir(int $style_id, string $local_dir_path, ResourceStakeholder $stakeholder, string $container_path="", bool $recursive=true)