-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #652 from magento-goinc/MAGETWO-36655
[GoIns] S47: Configurable Product, Downloadable Product
- Loading branch information
Showing
111 changed files
with
2,022 additions
and
1,912 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 0 additions & 11 deletions
11
app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/SuggestProductTemplates.php
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/ChildTab.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<?php | ||
/** | ||
* Copyright © 2015 Magento. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
|
||
/** | ||
* Product Child tab | ||
*/ | ||
namespace Magento\Catalog\Block\Adminhtml\Product\Edit\Tab; | ||
|
||
class ChildTab extends \Magento\Backend\Block\Template | ||
{ | ||
/** | ||
* @var \Magento\Backend\Block\Widget\Tab\TabInterface | ||
*/ | ||
protected $tab; | ||
|
||
/** | ||
* @param \Magento\Backend\Block\Widget\Tab\TabInterface $tab | ||
* @return $this | ||
*/ | ||
public function setTab(\Magento\Backend\Block\Widget\Tab\TabInterface $tab) | ||
{ | ||
$this->tab = $tab; | ||
return $this; | ||
} | ||
|
||
/** | ||
* @return string | ||
*/ | ||
public function getTitle() | ||
{ | ||
return $this->tab->getTabTitle(); | ||
} | ||
|
||
/** | ||
* @return string | ||
*/ | ||
public function getContent() | ||
{ | ||
return $this->tab->toHtml(); | ||
} | ||
|
||
/** | ||
* @return string | ||
*/ | ||
public function getTabId() | ||
{ | ||
return $this->tab->getTabId(); | ||
} | ||
|
||
/** | ||
* @return bool | ||
*/ | ||
public function isTabOpened() | ||
{ | ||
return (bool)$this->tab->getData('opened'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.