You are here

function homebox_features_export_options in Homebox 6.3

Same name and namespace in other branches
  1. 6.2 homebox.features.inc \homebox_features_export_options()
  2. 7.3 homebox.features.inc \homebox_features_export_options()
  3. 7.2 homebox.features.inc \homebox_features_export_options()

Implementation of hook_features_export_options().

File

./homebox.features.inc, line 26
Features support.

Code

function homebox_features_export_options() {
  $exports = array();
  $pages = homebox_pages();
  if ($pages) {
    foreach ($pages as $page) {
      $exports[$page->name] = $page->name;
    }
  }
  return $exports;
}