当前位置: 首页>>代码示例>>PHP>>正文


PHP Row::hasSourceProperty方法代码示例

本文整理汇总了PHP中Drupal\migrate\Row::hasSourceProperty方法的典型用法代码示例。如果您正苦于以下问题:PHP Row::hasSourceProperty方法的具体用法?PHP Row::hasSourceProperty怎么用?PHP Row::hasSourceProperty使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Drupal\migrate\Row的用法示例。


在下文中一共展示了Row::hasSourceProperty方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: transform

 /**
  * {@inheritdoc}
  */
 public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property)
 {
     $timezone = NULL;
     if ($row->hasSourceProperty('timezone_name')) {
         if (isset(static::$timezones[$row->getSourceProperty('timezone_name')])) {
             $timezone = $row->getSourceProperty('timezone_name');
         }
     }
     if (!$timezone && $row->hasSourceProperty('event_timezone')) {
         if (isset(static::$timezones[$row->getSourceProperty('event_timezone')])) {
             $timezone = $row->getSourceProperty('event_timezone');
         }
     }
     return $timezone;
 }
开发者ID:scratch,项目名称:gai,代码行数:18,代码来源:UserUpdate7002.php

示例2: prepareRow

  /**
   * {@inheritdoc}
   */
  public function prepareRow(Row $row) {
    // User roles.
    $roles = $this->select('users_roles', 'ur')
      ->fields('ur', array('rid'))
      ->condition('ur.uid', $row->getSourceProperty('uid'))
      ->execute()
      ->fetchCol();
    $row->setSourceProperty('roles', $roles);

    // We are adding here the Event contributed module column.
    // @see https://api.drupal.org/api/drupal/modules%21user%21user.install/function/user_update_7002/7
    if ($row->hasSourceProperty('timezone_id') && $row->getSourceProperty('timezone_id')) {
      if ($this->getDatabase()->schema()->tableExists('event_timezones')) {
        $event_timezone = $this->select('event_timezones', 'e')
          ->fields('e', array('name'))
          ->condition('e.timezone', $row->getSourceProperty('timezone_id'))
          ->execute()
          ->fetchField();
        if ($event_timezone) {
          $row->setSourceProperty('event_timezone', $event_timezone);
        }
      }
    }

    // Unserialize Data.
    $row->setSourceProperty('data', unserialize($row->getSourceProperty('data')));

    return parent::prepareRow($row);
  }
开发者ID:Greg-Boggs,项目名称:electric-dev,代码行数:32,代码来源:User.php


注:本文中的Drupal\migrate\Row::hasSourceProperty方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。