-
Notifications
You must be signed in to change notification settings - Fork 0
/
dblog.ocmod.xml
41 lines (41 loc) · 1.18 KB
/
dblog.ocmod.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="utf-8"?>
<modification>
<name>DB Log</name>
<code>dblog_1.0.0</code>
<version>1.0.0</version>
<author>Vozhzhov Artem</author>
<file path="system/library/db.php">
<operation>
<search>
<![CDATA[private $db;]]>
</search>
<add position="after">
<![CDATA[
private $log;
]]>
</add>
</operation>
<operation>
<search>
<![CDATA[$this->db = new $class($hostname, $username, $password, $database, $port);]]>
</search>
<add position="after">
<![CDATA[
$this->log = new DBLog($this);
]]>
</add>
</operation>
<operation>
<search>
<![CDATA[return $this->db->query($sql);]]>
</search>
<add position="replace">
<![CDATA[
$result = $this->db->query($sql);
$this->log->write($sql, $result);
return $result;
]]>
</add>
</operation>
</file>
</modification>