Pull merge.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / admin_paths.twig
1 /**
2  * Implements hook_admin_paths().
3  */
4 function {{ machine_name }}_admin_paths() {
5   $paths = array(
6     'mymodule/*/add' => TRUE,
7     'mymodule/*/edit' => TRUE,
8   );
9   return $paths;
10 }