You are here

function _pathauto_include in Pathauto 5.2

Same name and namespace in other branches
  1. 6.2 pathauto.module \_pathauto_include()
  2. 6 pathauto.module \_pathauto_include()

Include all Pathauto include files.

6 calls to _pathauto_include()
pathauto_admin_settings in ./pathauto.module
Form builder; Configure the Pathauto system.
pathauto_nodeapi in ./pathauto.module
Implementation of hook_nodeapi().
pathauto_node_operations_update in ./pathauto.module
Callback function for updating node aliases.
pathauto_taxonomy in ./pathauto.module
Implementation of hook_taxonomy().
pathauto_token_values in ./pathauto.module
Implementation of hook_token_values() for Pathauto specific tokens.

... See full list

File

./pathauto.module, line 82
Main file for the Pathauto module, which automatically generates aliases for content.

Code

function _pathauto_include() {
  $pathauto_path = './' . drupal_get_path('module', 'pathauto');
  require_once "{$pathauto_path}/pathauto.inc";
  require_once "{$pathauto_path}/pathauto_node.inc";
  require_once "{$pathauto_path}/pathauto_taxonomy.inc";
  require_once "{$pathauto_path}/pathauto_user.inc";
}