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


PHP FixtureInterface::getLandingPage方法代码示例

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


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

示例1: prepareData

 /**
  * Prepare category data for curl.
  *
  * @param FixtureInterface $fixture
  * @return array
  */
 protected function prepareData(FixtureInterface $fixture)
 {
     $data['general'] = $this->replaceMappingData($fixture->getData());
     $data['is_anchor'] = isset($data['is_anchor']) ? $data['is_anchor'] : 0;
     if ($fixture->hasData('landing_page')) {
         $data['general']['landing_page'] = $this->getBlockId($fixture->getLandingPage());
     }
     $diff = array_diff($this->dataUseConfig, array_keys($data['general']));
     if (!empty($diff)) {
         $data['use_config'] = $diff;
     }
     return $data;
 }
开发者ID:shabbirvividads,项目名称:magento2,代码行数:19,代码来源:Curl.php

示例2: persist

 /**
  * Post request for creating Subcategory.
  *
  * @param FixtureInterface|null $fixture [optional]
  * @return array
  */
 public function persist(FixtureInterface $fixture = null)
 {
     $data['general'] = $this->replaceMappingData($fixture->getData());
     if ($fixture->hasData('landing_page')) {
         $data['general']['landing_page'] = $this->getBlockId($fixture->getLandingPage());
     }
     if ($fixture->hasData('category_products')) {
         $data['category_products'] = $this->prepareCategoryProducts($fixture);
     }
     $diff = array_diff($this->dataUseConfig, array_keys($data['general']));
     if (!empty($diff)) {
         $data['use_config'] = $diff;
     }
     $parentCategoryId = $data['general']['parent_id'];
     $url = $_ENV['app_backend_url'] . 'catalog_category/save/store/0/parent/' . $parentCategoryId . '/?isAjax=true';
     $curl = new BackendDecorator(new CurlTransport(), $this->_configuration);
     $curl->write(CurlInterface::POST, $url, '1.1', [], $data);
     $response = $curl->read();
     $curl->close();
     preg_match('~http://.+/id/(\\d+).+?isAjax~', $response, $matches);
     $id = isset($matches[1]) ? (int) $matches[1] : null;
     return ['id' => $id];
 }
开发者ID:QiuLihua83,项目名称:magento-ee,代码行数:29,代码来源:Curl.php


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