Changeset 45052
- Timestamp:
- 05/09/08 22:57:51 (2 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
lmbbox-wordpress-plugin-api/trunk/wordpress-plugin-api.php
r44578 r45052 83 83 $this->__plugin_file = $file; 84 84 85 // Needs to be set in the class extending this API class 86 $this->_setup_options(); 87 $this->_setup_display(); 88 89 // Handle Options ... 85 $this->_setup_options(); // Needs to be set in the class extending this API class 90 86 $this->_get_options(); 91 87 $this->__save_options(); 88 $this->_setup_display(); // Needs to be set in the class extending this API class 92 89 93 90 // Add WordPress Actions and Filters … … 97 94 $this->_add_hook('action', 'admin_menu', array(&$this, '__register_menu_pages')); 98 95 $this->_add_hook('action', 'plugins_loaded', array(&$this, '__register_widgets')); 99 $this->_setup_hooks(); 96 $this->_setup_hooks(); // Needs to be set in the class extending this API class 100 97 } 101 98
