function hostingService_example_basic::delete_revision in Hosting 7.4
Same name and namespace in other branches
- 6.2 example/hosting_example.service.inc \hostingService_example_basic::delete_revision()
- 7.3 example/example_service/hosting_example.service.inc \hostingService_example_basic::delete_revision()
Delete a specific reivision from the database.
Not relevant in our example but shown anyway.
Overrides hostingService::delete_revision
File
- example/
example_service/ hosting_example.service.inc, line 195 - Example service implementation for the hosting front end.
Class
- hostingService_example_basic
- An implementation of the example service type, registered with hook_hosting_service.
Code
function delete_revision() {
// REMEMBER TO CALL THE PARENT!
parent::delete_revision();
}