12345678910111213141516171819202122232425 |
- <?php
- class views_plugin_style_default extends views_plugin_style {
-
- function options(&$options) {
- parent::options($options);
- }
- function options_form(&$form, &$form_state) {
- parent::options_form($form, $form_state);
- }
- }
|