You are here

function flexslider_form_optionset_import in Flex Slider 7

Import option set form

1 string reference to 'flexslider_form_optionset_import'
flexslider_menu in ./flexslider.module
Implements hook_menu().

File

./flexslider.admin.inc, line 495
Administrative page callbacks for the flexslider module.

Code

function flexslider_form_optionset_import() {
  $output = '<p>' . t('At present, the only method of importing option sets is by including the preset in a module. The Features module can simplify this process.') . '</p>';
  $output .= '<p>' . t('A form based import/export mechanism will be added in the future.') . '</p>';
  return $output;
}