26 protected \ilDBInterface
$db;
35 if (!$this->db->tableExists(
'style_char_title')) {
59 $this->db->createTable(
'style_char_title', $fields);
60 $this->db->addPrimaryKey(
'style_char_title', [
'type',
'characteristic',
'lang']);
66 $this->db->dropPrimaryKey(
'style_char_title');
67 if (!$this->db->tableColumnExists(
'style_char_title',
'style_id')) {
68 $this->db->addTableColumn(
'style_char_title',
'style_id', array(
74 $this->db->addPrimaryKey(
'style_char_title', [
'style_id',
'type',
'characteristic',
'lang']);
79 if (!$this->db->tableColumnExists(
'style_char',
'order_nr')) {
80 $this->db->addTableColumn(
'style_char',
'order_nr', array(
91 if (!$this->db->tableColumnExists(
'style_char',
'deprecated')) {
92 $this->db->addTableColumn(
'style_char',
'deprecated', array(
103 $this->db->renameTableColumn(
'style_char',
"deprecated",
'outdated');
108 if (!$this->db->tableExists(
'sty_rep_container')) {
124 $this->db->createTable(
'sty_rep_container', $fields);
125 $this->db->addPrimaryKey(
'sty_rep_container', [
'ref_id']);
131 $set = $this->db->queryF(
132 "SELECT * FROM content_object ",
136 while ($rec = $this->db->fetchAssoc($set)) {
140 "obj_id" => array(
"integer", (
int) $rec[
"id"])
143 "style_id" => array(
"integer", (
int) $rec[
"stylesheet"])
151 $set = $this->db->queryF(
152 "SELECT * FROM content_page_data ",
156 while ($rec = $this->db->fetchAssoc($set)) {
160 "obj_id" => array(
"integer", (
int) $rec[
"content_page_id"])),
162 "style_id" => array(
"integer", (
int) $rec[
"stylesheet"]))
169 if (!$this->db->tableColumnExists(
'style_data',
'owner_obj')) {
170 $this->db->addTableColumn(
'style_data',
'owner_obj', array(
181 $set = $this->db->queryF(
182 "SELECT * FROM style_data WHERE standard = %s",
186 while ($rec = $this->db->fetchAssoc($set)) {
187 $set2 = $this->db->queryF(
188 "SELECT * FROM style_usage " .
189 " WHERE style_id = %s ",
193 while ($rec2 = $this->db->fetchAssoc($set2)) {
197 "owner_obj" => [
"integer", $rec2[
"obj_id"]]
200 "id" => [
"integer", $rec[
"id"]]
210 if (!$this->db->indexExistsByFields(
'style_template', [
'style_id'])) {
211 $this->db->addIndex(
'style_template', [
'style_id'],
'i1');
218 if (!$this->db->indexExistsByFields(
'style_usage', array(
'style_id'))) {
219 $this->db->addIndex(
'style_usage', array(
'style_id'),
'i1');
228 "tag" => [
"text",
"p"]
231 "type" => [
"text",
"text_block"],
232 "tag" => [
"text",
"div"]
242 "uptodate" => [
"integer", 0]
245 "uptodate" => [
"integer", 1]
255 "type" => [
"text",
"strong"]
258 "type" => [
"text",
"text_inline"],
259 "characteristic" => [
"text",
"Strong"]
269 "tag" => [
"text",
"strong"],
270 "type" => [
"text",
"strong"]
273 "type" => [
"text",
"text_inline"],
274 "tag" => [
"text",
"span"],
275 "class" => [
"text",
"Strong"]
285 "type" => [
"text",
"em"]
288 "type" => [
"text",
"text_inline"],
289 "characteristic" => [
"text",
"Emph"]
299 "tag" => [
"text",
"em"],
300 "type" => [
"text",
"em"]
303 "type" => [
"text",
"text_inline"],
304 "tag" => [
"text",
"span"],
305 "class" => [
"text",
"Emph"]
315 "uptodate" => [
"integer", 0]
318 "uptodate" => [
"integer", 1]
328 "uptodate" => [
"integer", 0]
331 "uptodate" => [
"integer", 1]
338 if (!$this->db->tableColumnExists(
'style_data',
'rid')) {
339 $this->db->addTableColumn(
'style_data',
'rid', [
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
prepare(\ilDBInterface $db)
Prepare the execution of the steps.