You are here

function panels_mini_ui::init in Panels 7.3

Same name and namespace in other branches
  1. 6.3 panels_mini/plugins/export_ui/panels_mini_ui.class.php \panels_mini_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

panels_mini/plugins/export_ui/panels_mini_ui.class.php, line 7

Class

panels_mini_ui
@file

Code

function init($plugin) {
  parent::init($plugin);
  ctools_include('context');
}