| 7 system.updater.inc | public static ThemeUpdater::canUpdate($project_name) |
File
- modules/
system/ system.updater.inc, line 129 - Subclasses of the Updater class to update Drupal core knows how to update. At this time, only modules and themes are supported.
Code
public static function canUpdate($project_name) {
return (bool) drupal_get_path('theme', $project_name);
}
Login or register to post comments