You are here

public function ctools_export_ui::export_page in Chaos Tool Suite (ctools) 7

Same name and namespace in other branches
  1. 6 plugins/export_ui/ctools_export_ui.class.php \ctools_export_ui::export_page()

Page callback to display export information for an exportable item.

File

plugins/export_ui/ctools_export_ui.class.php, line 1234

Class

ctools_export_ui
Base class for export UI.

Code

public function export_page($js, $input, $item) {
  drupal_set_title($this
    ->get_page_title('export', $item), PASS_THROUGH);
  return drupal_get_form('ctools_export_form', ctools_export_crud_export($this->plugin['schema'], $item), t('Export'));
}