Skip to content
Snippets Groups Projects
Commit 017164f2 authored by dyszczo's avatar dyszczo
Browse files

more building ;)

parent 2ad36260
No related branches found
No related tags found
2 merge requests!5Devel,!4more like builder pattern
......@@ -3,15 +3,59 @@
namespace WPDesk\PluginBuilder\Builder;
class AbstractBuilder {
/**
* Create plugin class
*/
public function build_plugin() {
}
/**
* Store plugin class in some kind of storage
*/
public function store_plugin() {
}
/**
* Init plugin internal structure
*/
public function init_plugin() {
}
/**
* Return built plugin
*/
public function get_plugin() {
}
/**
* Set settings class in plugin
*
* @param $settings
*/
public function set_settings($settings) {
}
/**
* Set view class in plugin
*
* @param $view
*/
public function set_view($view) {
}
/**
* Set tracker class in plugin
*
* @param $tracker
*/
public function set_tracker($tracker) {
}
/**
* Set helper class in plugin
*
* @param $helper
*/
public function set_helper($helper) {
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment