You are here

function bootstrap_tour_load_legacy_tours in Bootstrap Tour 7.2

Legacy function which loads all 1.x tours from both exported Features and from the DB.

Return value

array

1 call to bootstrap_tour_load_legacy_tours()
bootstrap_tour_update_7200 in ./bootstrap_tour.install
Upgrade old 1.x tours to the new 2.x Entity format, then delete the old DB table.

File

./bootstrap_tour.install, line 372

Code

function bootstrap_tour_load_legacy_tours() {
  ctools_include('export');
  $tours = ctools_export_crud_load_all('bootstrap_tour_old');
  return $tours;
}