You are here

function tvi_include in Taxonomy Views Integrator 7

Same name and namespace in other branches
  1. 6 tvi.module \tvi_include()

Include various application logic.

Note, that you only have to specify the name of the include. tvi_include('admin') : includes -> [ includes/tvi.admin.inc ]

11 calls to tvi_include()
tvi_form_alter in ./tvi.module
Implements hook_form_alter().
tvi_get_term_info in ./tvi.module
Return different data sets for a specified term id.
tvi_modules_disabled in ./tvi.module
Implements hook_modules_disabled().
tvi_modules_enabled in ./tvi.module
Implements hook_modules_enabled().
tvi_settings_form in includes/tvi.admin.inc
Create the main settings form.

... See full list

File

./tvi.module, line 472
Allow to define views to be used instead of default drupal behavior on taxonomy terms pages.

Code

function tvi_include() {
  $args = func_get_args();
  foreach ($args as $name) {
    module_load_include('inc', 'tvi', 'includes/tvi.' . $name);
  }
}