class RoomsBookingTypeController in Rooms - Drupal Booking for Hotels, B&Bs and Vacation Rentals 7
The Controller for Booking Type entities
Hierarchy
- class \DrupalDefaultEntityController implements DrupalEntityControllerInterface- class \EntityAPIController implements EntityAPIControllerRevisionableInterface- class \EntityAPIControllerExportable- class \RoomsBookingTypeController
 
 
- class \EntityAPIControllerExportable
 
- class \EntityAPIController implements EntityAPIControllerRevisionableInterface
Expanded class hierarchy of RoomsBookingTypeController
1 string reference to 'RoomsBookingTypeController'
- rooms_booking_entity_info in modules/rooms_booking/ rooms_booking.module 
- Implements hook_entity_info().
File
- modules/rooms_booking/ rooms_booking.module, line 1190 
- Manage Bookings - Bookings are tied to a customer profile and possible a Unit ID and Order ID.
View source
class RoomsBookingTypeController extends EntityAPIControllerExportable {
  /**
   * Create a booking type - we first set up the values that are specific
   * to our booking type schema but then also go through the EntityAPIController
   * function.
   *
   * @param array $values
   *   Array containing properties to include in the booking type.
   *
   * @return object
   *   A booking type object with all default fields initialized.
   */
  public function create(array $values = array()) {
    // Add values that are specific to our Booking Type.
    $values += array(
      'id' => '',
      'is_new' => TRUE,
      'data' => '',
    );
    $booking_type = parent::create($values);
    return $booking_type;
  }
}Members
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| DrupalDefaultEntityController:: | protected | property | Whether this entity type should use the static cache. | |
| DrupalDefaultEntityController:: | protected | property | Static cache of entities, keyed by entity ID. | |
| DrupalDefaultEntityController:: | protected | property | Array of information about the entity. | |
| DrupalDefaultEntityController:: | protected | property | Entity type for this controller instance. | |
| DrupalDefaultEntityController:: | protected | property | Additional arguments to pass to hook_TYPE_load(). | |
| DrupalDefaultEntityController:: | protected | property | Name of the entity's ID field in the entity database table. | |
| DrupalDefaultEntityController:: | protected | property | Name of entity's revision database table field, if it supports revisions. | |
| DrupalDefaultEntityController:: | protected | property | The table that stores revisions, if the entity supports revisions. | |
| DrupalDefaultEntityController:: | protected | function | Ensures integer entity IDs are valid. | |
| DrupalDefaultEntityController:: | protected | function | Callback for array_filter that removes non-integer IDs. | |
| EntityAPIController:: | protected | property | ||
| EntityAPIController:: | protected | property | ||
| EntityAPIController:: | protected | property | ||
| EntityAPIController:: | public | function | Implements EntityAPIControllerInterface. Overrides EntityAPIControllerInterface:: | |
| EntityAPIController:: | public | function | Implements EntityAPIControllerRevisionableInterface::deleteRevision(). Overrides EntityAPIControllerRevisionableInterface:: | |
| EntityAPIController:: | public | function | Implements EntityAPIControllerInterface. Overrides EntityAPIControllerInterface:: | |
| EntityAPIController:: | public | function | Builds and executes the query for loading. | |
| EntityAPIController:: | protected | function | Renders a single entity property. | |
| EntityAPIController:: | protected | function | Saves an entity revision. | |
| EntityAPIControllerExportable:: | protected | property | ||
| EntityAPIControllerExportable:: | protected | property | ||
| EntityAPIControllerExportable:: | protected | function | ||
| EntityAPIControllerExportable:: | protected | function | Overridden. Overrides DrupalDefaultEntityController:: | |
| EntityAPIControllerExportable:: | protected | function | Support loading by name key. Overrides EntityAPIController:: | |
| EntityAPIControllerExportable:: | protected | function | Overridden. Overrides DrupalDefaultEntityController:: | |
| EntityAPIControllerExportable:: | protected | function | Like cacheGet() but keyed by name. | |
| EntityAPIControllerExportable:: | protected | function | Overridden. Overrides DrupalDefaultEntityController:: | |
| EntityAPIControllerExportable:: | public | function | Overridden to care about reverted entities. Overrides EntityAPIController:: | |
| EntityAPIControllerExportable:: | public | function | Overridden. Overrides EntityAPIController:: | |
| EntityAPIControllerExportable:: | public | function | Overridden to care about reverted bundle entities and to skip Rules. Overrides EntityAPIController:: | |
| EntityAPIControllerExportable:: | public | function | Overridden to support passing numeric ids as well as names as $ids. Overrides EntityAPIController:: | |
| EntityAPIControllerExportable:: | public | function | Overrides DrupalDefaultEntityController::resetCache(). Overrides EntityAPIController:: | |
| EntityAPIControllerExportable:: | public | function | Overridden to care exportables that are overridden. Overrides EntityAPIController:: | |
| EntityAPIControllerExportable:: | public | function | Implements EntityAPIControllerInterface. Overrides EntityAPIController:: | |
| EntityAPIControllerExportable:: | public | function | Overridden. Overrides EntityAPIController:: | |
| RoomsBookingTypeController:: | public | function | Create a booking type - we first set up the values that are specific
to our booking type schema but then also go through the EntityAPIController
function. Overrides EntityAPIController:: | 
