class MigrateSourceReservation in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.3
Hierarchy
- class \MigrateSource implements \Iterator
- class \MigrateSourceSQL
- class \MigrateSourceReservation
- class \MigrateSourceSQL
Expanded class hierarchy of MigrateSourceReservation
File
- merci_migrate/
merci_reservation.inc, line 47
View source
class MigrateSourceReservation extends MigrateSourceSQL {
// Your constructor will initialize any parameters to your migration. It's
// important to pass through the options, so general options such as
// cache_counts will work.
public function __construct() {
$query = db_select('node', 'n')
->condition('n.type', 'merci_reservation')
->condition('n.status', 1, '=')
->fields('n');
parent::__construct($query);
}
public function fields($migration = NULL) {
$properties = entity_get_property_info('node');
$fields = array();
foreach ($properties['properties'] as $name => $property_info) {
if (isset($property_info['setter callback'])) {
$fields[$name] = $property_info['description'];
}
}
// Then add in anything provided by handlers
$fields += migrate_handler_invoke_all('Entity', 'fields', 'node', 'merci_reservation');
return $fields;
}
/**
* Implementation of MigrateSource::getNextRow().
*
* @return object
*/
public function getNextRow() {
$row = parent::getNextRow();
if ($row) {
$node = node_load($row->nid);
if (is_object($node)) {
$node->merci_reservations = merci_reservation_items($node);
$node->reservation_items = array();
foreach ($node->merci_reservations as $reservation) {
$node->reservation_items[] = array(
$reservation['merci_item_nid'],
$row->nid,
);
}
return $node;
}
else {
return NULL;
}
}
else {
return NULL;
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MigrateSource:: |
protected | property | The MigrateMap class for the current migration. | |
MigrateSource:: |
protected | property | The Migration class currently invoking us, during rewind() and next(). | |
MigrateSource:: |
protected | property | Whether this instance should cache the source count. | |
MigrateSource:: |
protected | property | Key to use for caching counts. | |
MigrateSource:: |
protected | property | The primary key of the current row | |
MigrateSource:: |
protected | property | The current row from the quey | |
MigrateSource:: |
protected | property | Information on the highwater mark for the current migration, if any. | |
MigrateSource:: |
protected | property | List of source IDs to process. | |
MigrateSource:: |
protected | property | By default, next() will directly read the map row and add it to the data row. A source plugin implementation may do this itself (in particular, the SQL source can incorporate the map table into the query) - if so, it should set this TRUE so we… | |
MigrateSource:: |
protected | property | Used in the case of multiple key sources that need to use idlist. | |
MigrateSource:: |
protected | property | Number of rows intentionally ignored (prepareRow() returned FALSE) | |
MigrateSource:: |
protected | property | The highwater mark at the beginning of the import operation. | |
MigrateSource:: |
protected | property | Whether this instance should not attempt to count the source. | |
MigrateSource:: |
protected | property | If TRUE, we will maintain hashed source rows to determine whether incoming data has changed. | |
MigrateSource:: |
public | function | Return a count of available source records, from the cache if appropriate. Returns -1 if the source is not countable. | |
MigrateSource:: |
public | function | Implementation of Iterator::current() - called when entering a loop iteration, returning the current row | |
MigrateSource:: |
protected | function | Determine whether this row has changed, and therefore whether it should be processed. | |
MigrateSource:: |
public | function | ||
MigrateSource:: |
public | function | ||
MigrateSource:: |
public | function | ||
MigrateSource:: |
protected | function | Generate a hash of the source row. | 3 |
MigrateSource:: |
public | function | Implementation of Iterator::key - called when entering a loop iteration, returning the key of the current row. It must be a scalar - we will serialize to fulfill the requirement, but using getCurrentKey() is preferable. | |
MigrateSource:: |
public | function | Implementation of Iterator::next() - subclasses of MigrateSource should implement getNextRow() to retrieve the next valid source rocord to process. | |
MigrateSource:: |
protected | function | Give the calling migration a shot at manipulating, and possibly rejecting, the source row. | |
MigrateSource:: |
public | function | Reset numIgnored back to 0. | |
MigrateSource:: |
public | function | Implementation of Iterator::rewind() - subclasses of MigrateSource should implement performRewind() to do any class-specific setup for iterating source records. | |
MigrateSource:: |
public | function | Implementation of Iterator::valid() - called at the top of the loop, returning TRUE to process the loop and FALSE to terminate it | |
MigrateSourceReservation:: |
public | function |
Returns a list of fields available to be mapped from the source query. Overrides MigrateSourceSQL:: |
|
MigrateSourceReservation:: |
public | function |
Implementation of MigrateSource::getNextRow(). Overrides MigrateSourceSQL:: |
|
MigrateSourceReservation:: |
public | function |
Simple initialization. Overrides MigrateSourceSQL:: |
|
MigrateSourceSQL:: |
protected | property | Current data batch. | |
MigrateSourceSQL:: |
protected | property | Number of records to fetch from the database during each batch. A value of zero indicates no batching is to be done. | |
MigrateSourceSQL:: |
protected | property | List of available source fields. | |
MigrateSourceSQL:: |
protected | property | Whether, in the current iteration, we have reached the highwater mark. | |
MigrateSourceSQL:: |
protected | property | If the map is a MigrateSQLMap, and the table is compatible with the source query, we can join directly to the map and make things much faster and simpler. | |
MigrateSourceSQL:: |
protected | property |
Number of eligible rows processed so far (used for itemlimit checking). Overrides MigrateSource:: |
|
MigrateSourceSQL:: |
protected | property | The SQL query objects from which to obtain data, and counts of data. | |
MigrateSourceSQL:: |
protected | property | The result object from executing the query - traversed to process the incoming data. | |
MigrateSourceSQL:: |
protected | property | Whether this source is configured to use a highwater mark, and there is a highwater mark present to use. | |
MigrateSourceSQL:: |
public | function | Return a count of all available source records. | |
MigrateSourceSQL:: |
protected | function | Downloads the next set of data from the source database. | |
MigrateSourceSQL:: |
public static | function | Return an options array for PDO sources. | |
MigrateSourceSQL:: |
public | function | Implementation of MigrateSource::performRewind(). | |
MigrateSourceSQL:: |
public | function | Return a reference to the base query, in particular so Migration classes can add conditions/joins/etc to the query for a source defined in a base class. | |
MigrateSourceSQL:: |
public | function | ||
MigrateSourceSQL:: |
public | function | Return a string representing the source query. |