Skip to content
Snippets Groups Projects

5534 add docker

Merged Hahn Axel (hahn) requested to merge 5534-add-docker into master
3 files
+ 16
27
Compare changes
  • Side-by-side
  • Inline

Files

@@ -5,37 +5,19 @@
@@ -5,37 +5,19 @@
* @author hahn
* @author hahn
*/
*/
interface iBuildplugin {
interface iBuildplugin {
// ----------------------------------------------------------------------
// VERIFY
// ----------------------------------------------------------------------
/**
/**
* check requirements if the plugin could work
* get an array of commands to check requirements
public function checkRequirements();
* if the plugin is able to work
 
* @return array
*/
*/
 
public function checkRequirements();
/**
/**
* get an array with shell commands to execute
* get an array with shell commands to execute
* @return array
* @return array
*/
*/
public function getBuildCommands();
public function getBuildCommands();
/**
* get name of plugin as string ... language specific
public function getName();
*/
/**
* get description of plugin as string ... language specific
public function getDescription();
*/
/**
* get array of data in info.js
public function getPluginInfos();
*/
}
}
Loading