function _coder_is_drupal_core in Coder 5
Same name and namespace in other branches
- 5.2 coder.module \_coder_is_drupal_core()
- 6.2 coder.module \_coder_is_drupal_core()
- 6 coder.module \_coder_is_drupal_core()
1 call to _coder_is_drupal_core()
File
- ./
coder.module, line 1167 - Developer Module that assists with code review and version upgrade that supports a plug-in extensible hook system so contributed modules can define additional review standards.
Code
function _coder_is_drupal_core($module) {
static $core;
if (!isset($core)) {
$core = array(
// modules
'aggregator' => 1,
'block' => 1,
'blog' => 1,
'blogapi' => 1,
'book' => 1,
'color' => 1,
'comment' => 1,
'contact' => 1,
'dblog' => 1,
'drupal' => 1,
'filter' => 1,
'forum' => 1,
'help' => 1,
'locale' => 1,
'menu' => 1,
'node' => 1,
'path' => 1,
'php' => 1,
'ping' => 1,
'poll' => 1,
'profile' => 1,
'search' => 1,
'statistics' => 1,
'syslog' => 1,
'system' => 1,
'taxonomy' => 1,
'throttle' => 1,
'tracker' => 1,
'upload' => 1,
'user' => 1,
// themes
'bluemarine' => 1,
'chameleon' => 1,
'garland' => 1,
'marvin' => 1,
'minnelli' => 1,
'pushbutton' => 1,
);
}
return isset($core[$module->name]) ? 1 : 0;
}