コード例 #1
0
ファイル: Options.php プロジェクト: pradeep-wagento/magento2
 /**
  * Generate current options
  *
  * @return void
  */
 protected function generateCurrentOptions()
 {
     $websiteCollection = $this->systemStore->getWebsiteCollection();
     $groupCollection = $this->systemStore->getGroupCollection();
     $storeCollection = $this->systemStore->getStoreCollection();
     /** @var \Magento\Store\Model\Website $website */
     foreach ($websiteCollection as $website) {
         $groups = [];
         /** @var \Magento\Store\Model\Group $group */
         foreach ($groupCollection as $group) {
             if ($group->getWebsiteId() == $website->getId()) {
                 $stores = [];
                 /** @var  \Magento\Store\Model\Store $store */
                 foreach ($storeCollection as $store) {
                     if ($store->getGroupId() == $group->getId()) {
                         $name = $this->escaper->escapeHtml($store->getName());
                         $stores[$name]['label'] = str_repeat(' ', 8) . $name;
                         $stores[$name]['value'] = $store->getId();
                     }
                 }
                 if (!empty($stores)) {
                     $name = $this->escaper->escapeHtml($group->getName());
                     $groups[$name]['label'] = str_repeat(' ', 4) . $name;
                     $groups[$name]['value'] = array_values($stores);
                 }
             }
         }
         if (!empty($groups)) {
             $name = $this->escaper->escapeHtml($website->getName());
             $this->currentOptions[$name]['label'] = $name;
             $this->currentOptions[$name]['value'] = array_values($groups);
         }
     }
 }
コード例 #2
0
ファイル: Store.php プロジェクト: aiesh/magento2
 /**
  * Render HTML of the element
  *
  * @return string
  */
 public function getHtml()
 {
     $websiteCollection = $this->_systemStore->getWebsiteCollection();
     $groupCollection = $this->_systemStore->getGroupCollection();
     $storeCollection = $this->_systemStore->getStoreCollection();
     $allShow = $this->getColumn()->getStoreAll();
     $html = '<select name="' . $this->escapeHtml($this->_getHtmlName()) . '" ' . $this->getColumn()->getValidateClass() . $this->getUiId('filter', $this->_getHtmlName()) . '>';
     $value = $this->getColumn()->getValue();
     if ($allShow) {
         $html .= '<option value="0"' . ($value == 0 ? ' selected="selected"' : '') . '>' . __('All Store Views') . '</option>';
     } else {
         $html .= '<option value=""' . (!$value ? ' selected="selected"' : '') . '></option>';
     }
     foreach ($websiteCollection as $website) {
         $websiteShow = false;
         foreach ($groupCollection as $group) {
             if ($group->getWebsiteId() != $website->getId()) {
                 continue;
             }
             $groupShow = false;
             foreach ($storeCollection as $store) {
                 if ($store->getGroupId() != $group->getId()) {
                     continue;
                 }
                 if (!$websiteShow) {
                     $websiteShow = true;
                     $html .= '<optgroup label="' . $this->escapeHtml($website->getName()) . '"></optgroup>';
                 }
                 if (!$groupShow) {
                     $groupShow = true;
                     $html .= '<optgroup label="&nbsp;&nbsp;&nbsp;&nbsp;' . $this->escapeHtml($group->getName()) . '">';
                 }
                 $value = $this->getValue();
                 $selected = $value == $store->getId() ? ' selected="selected"' : '';
                 $html .= '<option value="' . $store->getId() . '"' . $selected . '>&nbsp;&nbsp;&nbsp;&nbsp;' . $this->escapeHtml($store->getName()) . '</option>';
             }
             if ($groupShow) {
                 $html .= '</optgroup>';
             }
         }
     }
     if ($this->getColumn()->getDisplayDeleted()) {
         $selected = $this->getValue() == '_deleted_' ? ' selected' : '';
         $html .= '<option value="_deleted_"' . $selected . '>' . __('[ deleted ]') . '</option>';
     }
     $html .= '</select>';
     return $html;
 }
コード例 #3
0
ファイル: Switcher.php プロジェクト: aiesh/magento2
 /**
  * Process website info
  *
  * @param \Magento\Store\Model\System\Store $storeModel
  * @param \Magento\Store\Model\Website $website
  * @param string $section
  * @param string $curStore
  * @param string $curWebsite
  * @param array $options
  * @return array
  */
 protected function _processWebsite(\Magento\Store\Model\System\Store $storeModel, \Magento\Store\Model\Website $website, $section, $curStore, $curWebsite, array $options)
 {
     $websiteShow = false;
     foreach ($storeModel->getGroupCollection() as $group) {
         if ($group->getWebsiteId() != $website->getId()) {
             continue;
         }
         $groupShow = false;
         foreach ($storeModel->getStoreCollection() as $store) {
             if ($store->getGroupId() != $group->getId()) {
                 continue;
             }
             if (!$websiteShow) {
                 $websiteShow = true;
                 $options['website_' . $website->getCode()] = array('label' => $website->getName(), 'url' => $this->getUrl('*/*/*', array('section' => $section, 'website' => $website->getCode())), 'selected' => !$curStore && $curWebsite == $website->getCode(), 'style' => 'padding-left:16px; background:#DDD; font-weight:bold;');
             }
             if (!$groupShow) {
                 $groupShow = true;
                 $options['group_' . $group->getId() . '_open'] = array('is_group' => true, 'is_close' => false, 'label' => $group->getName(), 'style' => 'padding-left:32px;');
             }
             $options['store_' . $store->getCode()] = array('label' => $store->getName(), 'url' => $this->getUrl('*/*/*', array('section' => $section, 'website' => $website->getCode(), 'store' => $store->getCode())), 'selected' => $curStore == $store->getCode(), 'style' => '');
         }
         if ($groupShow) {
             $options['group_' . $group->getId() . '_close'] = array('is_group' => true, 'is_close' => true);
         }
     }
     return $options;
 }
コード例 #4
0
ファイル: Options.php プロジェクト: nja78/magento2
 /**
  * Get options
  *
  * @return array
  */
 public function toOptionArray()
 {
     if ($this->options !== null) {
         return $this->options;
     }
     $websiteCollection = $this->systemStore->getWebsiteCollection();
     $groupCollection = $this->systemStore->getGroupCollection();
     $storeCollection = $this->systemStore->getStoreCollection();
     $currentOptions = [];
     /** @var \Magento\Store\Model\Website $website */
     foreach ($websiteCollection as $website) {
         $groups = [];
         /** @var \Magento\Store\Model\Group $group */
         foreach ($groupCollection as $group) {
             if ($group->getWebsiteId() == $website->getId()) {
                 $stores = [];
                 /** @var  \Magento\Store\Model\Store $store */
                 foreach ($storeCollection as $store) {
                     if ($store->getGroupId() == $group->getId()) {
                         $name = $this->escaper->escapeHtml($store->getName());
                         $stores[$name]['label'] = str_repeat(' ', 8) . $name;
                         $stores[$name]['value'] = $store->getId();
                     }
                 }
                 if (!empty($stores)) {
                     $name = $this->escaper->escapeHtml($group->getName());
                     $groups[$name]['label'] = str_repeat(' ', 4) . $name;
                     $groups[$name]['value'] = array_values($stores);
                 }
             }
         }
         if (!empty($groups)) {
             $name = $this->escaper->escapeHtml($website->getName());
             $currentOptions[$name]['label'] = $name;
             $currentOptions[$name]['value'] = array_values($groups);
         }
     }
     $this->options = array_values($currentOptions);
     return $this->options;
 }
コード例 #5
0
ファイル: Options.php プロジェクト: Doability/magento2dev
 /**
  * Generate current options
  *
  * @return void
  */
 protected function generateCurrentOptions()
 {
     $websiteCollection = $this->systemStore->getWebsiteCollection();
     $groupCollection = $this->systemStore->getGroupCollection();
     $storeCollection = $this->systemStore->getStoreCollection();
     // Add option to select All Websites
     $this->currentOptions['All Websites']['label'] = $this->escaper->escapeHtml(__('All Websites'));
     $this->currentOptions['All Websites']['value'] = \Magento\Search\Ui\Component\Listing\Column\Website\Options::ALL_WEBSITES . ':' . \Magento\Store\Model\Store::DEFAULT_STORE_ID;
     foreach ($websiteCollection as $website) {
         $groups = [];
         /** @var \Magento\Store\Model\Group $group */
         foreach ($groupCollection as $group) {
             if ($group->getWebsiteId() == $website->getId()) {
                 $stores = [];
                 /** @var  \Magento\Store\Model\Store $store */
                 // Add an option for All store views for this website
                 $stores['All Store Views']['label'] = $this->escaper->escapeHtml(__('    All Store Views'));
                 $stores['All Store Views']['value'] = $website->getId() . ':' . \Magento\Store\Model\Store::DEFAULT_STORE_ID;
                 /** @var \Magento\Store\Model\Website $website */
                 foreach ($storeCollection as $store) {
                     if ($store->getGroupId() == $group->getId()) {
                         $name = $this->escaper->escapeHtml($store->getName());
                         $stores[$name]['label'] = str_repeat(' ', 8) . $name;
                         $stores[$name]['value'] = $website->getId() . ':' . $store->getId();
                     }
                 }
                 // Add parent Store group
                 $name = $this->escaper->escapeHtml($group->getName());
                 $groups[$name]['label'] = str_repeat(' ', 4) . $name;
                 $groups[$name]['value'] = array_values($stores);
             }
         }
         $name = $this->escaper->escapeHtml($website->getName());
         $this->currentOptions[$name]['label'] = $name;
         $this->currentOptions[$name]['value'] = array_values($groups);
     }
 }
コード例 #6
0
 /**
  * Get options
  *
  * @param array $options
  * @return array
  */
 public function getOptions(array $options = [])
 {
     $websiteCollection = $this->systemStore->getWebsiteCollection();
     $groupCollection = $this->systemStore->getGroupCollection();
     $storeCollection = $this->systemStore->getStoreCollection();
     $currentOptions = [__('All Store Views') => ['label' => __('All Store Views'), 'value' => 0]];
     /** @var \Magento\Store\Model\Website $website */
     foreach ($websiteCollection as $website) {
         $groups = [];
         /** @var \Magento\Store\Model\Group $group */
         foreach ($groupCollection as $group) {
             if ($group->getWebsiteId() == $website->getId()) {
                 $stores = [];
                 /** @var  \Magento\Store\Model\Store $store */
                 foreach ($storeCollection as $store) {
                     if ($store->getGroupId() == $group->getId()) {
                         $name = $this->escaper->escapeHtml($store->getName());
                         $stores[$name]['label'] = str_repeat(' ', 8) . $name;
                         $stores[$name]['value'] = $store->getId();
                     }
                 }
                 if (!empty($stores)) {
                     $name = $this->escaper->escapeHtml($group->getName());
                     $groups[$name]['label'] = str_repeat(' ', 4) . $name;
                     $groups[$name]['value'] = $stores;
                 }
             }
         }
         if (!empty($groups)) {
             $name = $this->escaper->escapeHtml($website->getName());
             $currentOptions[$name]['label'] = $name;
             $currentOptions[$name]['value'] = $groups;
         }
     }
     return array_merge_recursive($currentOptions, $options);
 }