public static function ModuleUpdater::canUpdate in Drupal 7
File
- modules/
system/ system.updater.inc, line 47 - Subclasses of the Updater class to update Drupal core knows how to update. At this time, only modules and themes are supported.
Class
- ModuleUpdater
- Class for updating modules using FileTransfer classes via authorize.php.
Code
public static function canUpdate($project_name) {
return (bool) drupal_get_path('module', $project_name);
}