uninstallLocale() static public method

Uninstall support for an existing locale.
static public uninstallLocale ( $locale )
$locale string
コード例 #1
0
ファイル: Locale.inc.php プロジェクト: jerico-dev/omp
 /**
  * Uninstall support for a new locale.
  * @param $locale string
  */
 function uninstallLocale($locale)
 {
     parent::uninstallLocale($locale);
     $genreDao =& DAORegistry::getDAO('GenreDAO');
     $genreDao->uninstallLocale($locale);
     $publicationFormatDao =& DAORegistry::getDAO('PublicationFormatDAO');
     $publicationFormatDao->uninstallLocale($locale);
     $userGroupDao =& DAORegistry::getDAO('UserGroupDAO');
     $userGroupDao->deleteSettingsByLocale($locale);
 }
コード例 #2
0
ファイル: AppLocale.inc.php プロジェクト: josekarvalho/omp
 /**
  * Uninstall support for a new locale.
  * @param $locale string
  */
 static function uninstallLocale($locale)
 {
     parent::uninstallLocale($locale);
     $genreDao = DAORegistry::getDAO('GenreDAO');
     $genreDao->deleteSettingsByLocale($locale);
     $userGroupDao = DAORegistry::getDAO('UserGroupDAO');
     $userGroupDao->deleteSettingsByLocale($locale);
 }