You are here

class MigrateMetatagsquickFieldHandler in Meta tags quick 7.2

Same name and namespace in other branches
  1. 8.3 metatags_quick.migrate.inc \MigrateMetatagsquickFieldHandler

Migrate field handler for metatags_quick field.

Hierarchy

Expanded class hierarchy of MigrateMetatagsquickFieldHandler

File

./metatags_quick.migrate.inc, line 10
Implements migrate api for metatags_quick field.

View source
class MigrateMetatagsquickFieldHandler extends MigrateFieldHandler {
  public function __construct() {
    $this
      ->registerTypes(array(
      'metatags_quick',
    ));
  }
  public function prepare(stdClass $entity, array $field_info, array $instance, array $values) {
    $arguments = array();
    if (isset($values['arguments'])) {
      $arguments = array_filter($values['arguments']);
      unset($values['arguments']);
    }
    $language = $this
      ->getFieldLanguage($entity, $field_info, $arguments);

    // Setup the standard Field API array for saving.
    $delta = 0;
    foreach ($values as $value) {
      $return[$language][$delta] = array(
        'metatags_quick' => $value,
      );
      $delta++;
    }
    return isset($return) ? $return : NULL;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
MigrateFieldHandler::getFieldLanguage function Determine the language of the field.
MigrateHandler::$dependencies protected property List of other handler classes which should be invoked before the current one.
MigrateHandler::$typesHandled protected property List of "types" handled by this handler. Depending on the kind of handler, these may be destination types, field types, etc.
MigrateHandler::getDependencies public function
MigrateHandler::getTypesHandled public function
MigrateHandler::handlesType public function Does this handler handle the given type? 1
MigrateHandler::registerTypes protected function Register a list of types handled by this class
MigrateMetatagsquickFieldHandler::prepare public function
MigrateMetatagsquickFieldHandler::__construct public function Overrides MigrateHandler::__construct