function galleria_form_optionset_import in Galleria 7
Import option set form
1 string reference to 'galleria_form_optionset_import'
- galleria_menu in ./
galleria.module - Implements hook_menu().
File
- includes/
galleria.admin.inc, line 1020 - Administrative page callbacks for the galleria module.
Code
function galleria_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;
}