public function SlickUi::list_form in Slick Carousel 7.2
Overrides parent::list_form.
Overrides ctools_export_ui::list_form
File
- slick_ui/
plugins/ export_ui/ SlickUi.class.php, line 885 - Contains the CTools export UI integration code.
Class
- SlickUi
- CTools Export UI class handler for Slick UI.
Code
public function list_form(&$form, &$form_state) {
parent::list_form($form, $form_state);
$form['slick description']['#prefix'] = '<div class="ctools-export-ui-row ctools-export-ui-slick-description clearfix">';
$form['slick description']['#markup'] = t("<p>Manage the Slick optionsets. Optionsets are Config Entities.</p><p>By default, when this module is enabled, a single optionset is created from configuration. Install Slick example module to speed up by cloning them. Use the Operations column to edit, clone and delete optionsets.<br /><strong class='error'>Important!</strong> Avoid overriding Default optionset as it is meant for Default -- checking and cleaning. Use Clone, or Add, instead. If you did, please clone it and revert, otherwise messes are yours.<br />Slick doesn't need Slick UI to run. It is always safe to uninstall (not only disable) Slick UI once done with optionsets, either stored at codes, or database.</p>");
$form['slick description']['#suffix'] = '</div>';
}