You are here

class MigrateViewModeSelectorValueFieldHandler in View Mode Selector 7

Field handler class to implement view mode selector field migration.

Hierarchy

Expanded class hierarchy of MigrateViewModeSelectorValueFieldHandler

1 string reference to 'MigrateViewModeSelectorValueFieldHandler'
view_mode_selector_migrate_api in ./view_mode_selector.module
Implements hook_migrate_api().

File

./view_mode_selector.migrate.inc, line 11
Support for Migrate API module.

View source
class MigrateViewModeSelectorValueFieldHandler extends MigrateValueFieldHandler {
  public function __construct() {
    $this
      ->registerTypes(array(
      'view_mode_selector',
    ));
  }

}

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
MigrateSimpleFieldHandler::$fieldValueKey protected property
MigrateSimpleFieldHandler::$skipEmpty protected property
MigrateSimpleFieldHandler::notNull protected function Returns TRUE only for values which are not NULL. 2
MigrateSimpleFieldHandler::prepare public function
MigrateViewModeSelectorValueFieldHandler::__construct public function Construct a simple field handler. Overrides MigrateValueFieldHandler::__construct