You are here

public function LikeBtn::runSyncLocales in Like Button 7

Same name and namespace in other branches
  1. 8.2 likebtn.php \LikeBtn::runSyncLocales()

Run locales synchronization.

File

./likebtn.php, line 378
LikeBtn like button.

Class

LikeBtn

Code

public function runSyncLocales() {
  if ($this
    ->timeToSync(LIKEBTN_LOCALES_SYNC_INTERVAL, 'likebtn_last_locale_sync_time') && function_exists('curl_init')) {
    $this
      ->syncLocales();
  }
}