You are here

function stylizer_ui::init in Chaos Tool Suite (ctools) 6

Same name and namespace in other branches
  1. 7 stylizer/plugins/export_ui/stylizer_ui.class.php \stylizer_ui::init()

Fake constructor -- this is easier to deal with than the real constructor because we are retaining PHP4 compatibility, which would require all child classes to implement their own constructor.

Overrides ctools_export_ui::init

File

stylizer/plugins/export_ui/stylizer_ui.class.php, line 166

Class

stylizer_ui
UI class for Stylizer.

Code

function init($plugin) {
  ctools_include('stylizer');
  $this->base_types = ctools_get_style_base_types();
  parent::init($plugin);
}