You are here

public function ctools_export_ui::init in Chaos Tool Suite (ctools) 7

Same name and namespace in other branches
  1. 6 plugins/export_ui/ctools_export_ui.class.php \ctools_export_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.

1 call to ctools_export_ui::init()
stylizer_ui::init in stylizer/plugins/export_ui/stylizer_ui.class.php
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.
1 method overrides ctools_export_ui::init()
stylizer_ui::init in stylizer/plugins/export_ui/stylizer_ui.class.php
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.

File

plugins/export_ui/ctools_export_ui.class.php, line 16

Class

ctools_export_ui
Base class for export UI.

Code

public function init($plugin) {
  ctools_include('export');
  $this->plugin = $plugin;
}