function Provision_Service_example::init in Hosting 7.4
Same name and namespace in other branches
- 7.3 example/example_service/drush/Provision/Service/example.php \Provision_Service_example::init()
Initialize the service along with the server object.
File
- example/
example_service/ drush/ Provision/ Service/ example.php, line 16
Class
- Provision_Service_example
- The service type base class.
Code
function init() {
// REMEMBER TO CALL THE PARENT!
parent::init();
/**
* We do not need to use this in our example.
*
* You would extend this if you needed to save values
* for all possible implementations of this service type.
*/
}