1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62:
<?php
class cachemanager_internal_deprecations {
static function addThemeCacheSize() {
deprecated_functions::notify(gettext('Use cacheManager::addCacheSize() instead'), E_USER_NOTICE);
}
static function addThemeDefaultThumbSize() {
deprecated_functions::notify(gettext("Use cacheManager::addDefaultThumbSize()"), E_USER_NOTICE);
}
static function addThemeDefaultSizedImageSize() {
deprecated_functions::notify(gettext("Use cacheManager::addDefaultSizedImageSize()"), E_USER_NOTICE);
}
static function deleteThemeCacheSizes() {
deprecated_functions::notify(gettext('Use cacheManager::deleteCacheSizes()'), E_USER_NOTICE);
}
}
function getTitle($table, $row) {
return cacheManager::getTitle($table, $row);
}
function recordMissing($table, $row, $image) {
cacheManager::recordMissing($table, $row, $image);
}
function updateCacheName($text, $target, $update) {
return cacheManager::updateCacheName($text, $target, $update);
}