24 $this->db_prefix = $a_db_prefix;
28 $this->db = $a_db_handler;
37 $mySetup = $DIC[
'mySetup'];
38 $this->db = $mySetup->db;
42 $this->ctype = $a_ctype;
43 $this->cname = $a_cname;
44 $this->slot_id = $a_slot_id;
45 $this->pname = $a_pname;
47 include_once(
"./Services/Component/classes/class.ilPluginSlot.php");
59 $this->current_file = $updatefile;
60 $this->DB_UPDATE_FILE = $this->
PATH .
71 $this->LAST_UPDATE_FILE = $this->
PATH .
89 return "dbupdate.php";
108 $q =
"SELECT db_version FROM il_plugin " .
109 " WHERE component_type = " . $this->db->quote($this->ctype,
"text") .
110 " AND component_name = " . $this->db->quote($this->cname,
"text") .
111 " AND slot_id = " . $this->db->quote($this->slot_id,
"text") .
112 " AND name = " . $this->db->quote($this->pname,
"text");
113 $set = $this->db->query($q);
114 $rec = $this->db->fetchAssoc($set);
116 $this->currentVersion = (int) $rec[
"db_version"];
126 $q =
"UPDATE il_plugin SET db_version = " . $this->db->quote((
int) $a_version,
"integer") .
127 " WHERE component_type = " . $this->db->quote($this->ctype,
"text") .
128 " AND component_name = " . $this->db->quote($this->cname,
"text") .
129 " AND slot_id = " . $this->db->quote($this->slot_id,
"text") .
130 " AND name = " . $this->db->quote($this->pname,
"text");
131 $this->db->manipulate($q);
132 $this->currentVersion = $a_version;
147 if ((is_int(stripos($q,
"create table")) || is_int(stripos($q,
"alter table")) ||
148 is_int(stripos($q,
"drop table")))
149 && !is_int(stripos($q, $this->db_prefix))) {
150 return "Plugin may only create or alter tables that use prefix " .
static getDBUpdateScriptName(string $a_ctype, string $a_cname, string $a_slot_name, string $a_pname)
__construct( $a_ctype, $a_cname, $a_slot_id, $a_pname, $a_db_handler, $tmp_flag, $a_db_prefix)
constructor
static lookupSlotName($a_ctype, $a_cname, $a_slot_id)
Lookup slot name for component and slot id.
setCurrentVersion($a_version)
Set current DB version.
checkQuery($q)
This is a very simple check.
getCurrentVersion()
Get current DB version.
getFileForStep($a_version)
Get db update file name for db step.