Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
wp-builder
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wpdesk
wp-builder
Merge requests
!5
Devel
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Devel
devel
into
master
Overview
0
Commits
10
Pipelines
0
Changes
1
Merged
Krzysztof Dyszczyk
requested to merge
devel
into
master
7 years ago
Overview
0
Commits
10
Pipelines
0
Changes
1
0
0
Merge request reports
Viewing commit
017164f2
Prev
Next
Show latest version
1 file
+
44
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
017164f2
more building ;)
· 017164f2
dyszczo
authored
7 years ago
src/Builder/AbstractBuilder.php
+
44
−
0
View file @ 017164f2
Edit in single-file editor
Open in Web IDE
Show full file
@@ -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
Loading