本文整理汇总了PHP中Piwik\Common::prefixTables方法的典型用法代码示例。如果您正苦于以下问题:PHP Common::prefixTables方法的具体用法?PHP Common::prefixTables怎么用?PHP Common::prefixTables使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Piwik\Common
的用法示例。
在下文中一共展示了Common::prefixTables方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getDeleteTableLogTables
public static function getDeleteTableLogTables()
{
$result = Common::prefixTables('log_conversion', 'log_link_visit_action', 'log_visit', 'log_conversion_item');
if (Db::isLockPrivilegeGranted()) {
$result[] = Common::prefixTable('log_action');
}
return $result;
}
示例2: lockLogTables
protected function lockLogTables($generic)
{
$generic->lockTables($readLocks = Common::prefixTables('log_conversion', 'log_link_visit_action', 'log_visit', 'log_conversion_item'), $writeLocks = Common::prefixTable('log_action'));
}
示例3: deleteUnusedActions
private function deleteUnusedActions()
{
list($logActionTable, $tempTableName) = Common::prefixTables("log_action", self::DELETE_UNUSED_ACTIONS_TEMP_TABLE_NAME);
$deleteSql = "DELETE LOW_PRIORITY QUICK IGNORE {$logActionTable}\n\t\t\t\t\t\tFROM {$logActionTable}\n\t\t\t\t LEFT JOIN {$tempTableName} tmp ON tmp.idaction = {$logActionTable}.idaction\n\t\t\t\t\t WHERE tmp.idaction IS NULL";
Db::query($deleteSql);
}
示例4: isLockPrivilegeGranted
public function isLockPrivilegeGranted()
{
$granted = false;
try {
$this->beginTransaction();
$this->lockTables(Common::prefixTables('log_visit'), array());
$this->rollback();
$granted = true;
} catch (Exception $ex) {
$granted = false;
}
return $granted;
}