You are here

function bootstrap_tour_load in Bootstrap Tour 7

Same name and namespace in other branches
  1. 7.2 bootstrap_tour.module \bootstrap_tour_load()

Callback function for loading one bootstrap tour by $name.

2 calls to bootstrap_tour_load()
bootstrap_tour_is_default in ./bootstrap_tour.module
Helper function to look up an object by name to see if it's a default or not.
bootstrap_tour_run_tour in ./bootstrap_tour.module
Helper function to actually run a tour. Can be called from anywhere.

File

./bootstrap_tour.module, line 517

Code

function bootstrap_tour_load($name) {
  ctools_include('export');
  return ctools_export_crud_load('bootstrap_tour', $name);
}