You are here

function hostingService_example_basic::delete_revision in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 example/example_service/hosting_example.service.inc \hostingService_example_basic::delete_revision()
  2. 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/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();
}