function _dcf_internal_path in Elysia Cron 6.2
Same name and namespace in other branches
- 6 elysia_drupalconv.php \_dcf_internal_path()
- 7 elysia_drupalconv.php \_dcf_internal_path()
7 calls to _dcf_internal_path()
- elysia_cron_admin_menu in ./
elysia_cron.module - Implementation of hook_admin_menu().
- elysia_cron_admin_page in ./
elysia_cron.admin.inc - elysia_cron_cron in ./
elysia_cron.module - Hook cron is invoked only by standard drupal cron. It's used to replace drupal cron.
- elysia_cron_execute_page in ./
elysia_cron.admin.inc - elysia_cron_help in ./
elysia_cron.module - I use help section for admin/build/modules page to check if elysia_cron is the module with the smallest weight. If it's not i'll set it and print a message
File
- ./
elysia_drupalconv.php, line 52
Code
function _dcf_internal_path($path) {
return str_replace(array(
'admin/config/system/cron',
'admin/modules',
), array(
'admin/build/cron',
'admin/build/modules',
), $path);
}