Example #1
0
 private function unlockLogTables()
 {
     Piwik_UnlockAllTables();
 }
Example #2
0
 /**
  * Checks whether the database user is allowed to lock tables.
  * 
  * @return bool
  */
 public static function isLockPrivilegeGranted()
 {
     if (is_null(self::$lockPrivilegeGranted)) {
         try {
             Piwik_LockTables(Piwik_Common::prefixTable('log_visit'));
             Piwik_UnlockAllTables();
             self::$lockPrivilegeGranted = true;
         } catch (Exception $ex) {
             self::$lockPrivilegeGranted = false;
         }
     }
     return self::$lockPrivilegeGranted;
 }