-
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 remote-tracking branch 'git-36981/no-author/url-user-variable-w…
…eee' into bluetooth_delivery
- Loading branch information
Showing
13 changed files
with
11 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,8 +12,6 @@ | |
|
||
/** | ||
* Categories tree block for URL rewrites editing process | ||
* | ||
* @author Magento Core Team <[email protected]> | ||
*/ | ||
class Tree extends \Magento\Catalog\Block\Adminhtml\Category\AbstractCategory | ||
{ | ||
|
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 |
---|---|---|
|
@@ -8,7 +8,6 @@ | |
/** | ||
* Products grid for URL rewrites editing | ||
* | ||
* @author Magento Core Team <[email protected]> | ||
* @SuppressWarnings(PHPMD.DepthOfInheritance) | ||
*/ | ||
class Grid extends \Magento\Catalog\Block\Adminhtml\Product\Grid | ||
|
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 |
---|---|---|
|
@@ -8,7 +8,6 @@ | |
/** | ||
* CMS pages grid for URL rewrites | ||
* | ||
* @author Magento Core Team <[email protected]> | ||
* @SuppressWarnings(PHPMD.DepthOfInheritance) | ||
*/ | ||
class Grid extends \Magento\Cms\Block\Adminhtml\Page\Grid | ||
|
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 |
---|---|---|
|
@@ -9,7 +9,6 @@ | |
* Magento_User role block | ||
* | ||
* @api | ||
* @author Magento Core Team <[email protected]> | ||
* @since 100.0.2 | ||
*/ | ||
class Role extends \Magento\Backend\Block\Widget\Grid\Container | ||
|
@@ -37,6 +36,8 @@ protected function _construct() | |
} | ||
|
||
/** | ||
* Get a URL to create a role | ||
* | ||
* @return string | ||
*/ | ||
public function getCreateUrl() | ||
|
@@ -45,6 +46,8 @@ public function getCreateUrl() | |
} | ||
|
||
/** | ||
* Prepare the layout | ||
* | ||
* @return $this | ||
*/ | ||
protected function _prepareLayout() | ||
|
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 |
---|---|---|
|
@@ -9,7 +9,6 @@ | |
* User block | ||
* | ||
* @api | ||
* @author Magento Core Team <[email protected]> | ||
* @since 100.0.2 | ||
*/ | ||
class User extends \Magento\Backend\Block\Widget\Grid\Container | ||
|
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 |
---|---|---|
|
@@ -10,14 +10,11 @@ | |
* User edit page | ||
* | ||
* @api | ||
* @author Magento Core Team <[email protected]> | ||
* @since 100.0.2 | ||
*/ | ||
class Edit extends \Magento\Backend\Block\Widget\Form\Container | ||
{ | ||
/** | ||
* Core registry | ||
* | ||
* @var \Magento\Framework\Registry | ||
*/ | ||
protected $_coreRegistry = null; | ||
|
@@ -121,6 +118,8 @@ public function getObjectId() | |
} | ||
|
||
/** | ||
* Get text to be used in the header | ||
* | ||
* @return \Magento\Framework\Phrase | ||
*/ | ||
public function getHeaderText() | ||
|
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 |
---|---|---|
|
@@ -9,7 +9,6 @@ | |
* User page left menu | ||
* | ||
* @api | ||
* @author Magento Core Team <[email protected]> | ||
* @since 100.0.2 | ||
*/ | ||
class Tabs extends \Magento\Backend\Block\Widget\Tabs | ||
|
@@ -28,6 +27,8 @@ protected function _construct() | |
} | ||
|
||
/** | ||
* Add tabs to the HTML | ||
* | ||
* @return $this | ||
*/ | ||
protected function _beforeToHtml() | ||
|
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 |
---|---|---|
|
@@ -7,8 +7,6 @@ | |
|
||
/** | ||
* Admin role users collection | ||
* | ||
* @author Magento Core Team <[email protected]> | ||
*/ | ||
class Collection extends \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection | ||
{ | ||
|
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 |
---|---|---|
|
@@ -7,8 +7,6 @@ | |
|
||
/** | ||
* Admin user collection | ||
* | ||
* @author Magento Core Team <[email protected]> | ||
*/ | ||
class Collection extends \Magento\User\Model\ResourceModel\User\Collection | ||
{ | ||
|
@@ -22,5 +20,7 @@ protected function _initSelect() | |
{ | ||
parent::_initSelect(); | ||
$this->addFieldToFilter('lock_expires', ['notnull' => true]); | ||
|
||
return $this; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -8,8 +8,6 @@ | |
|
||
/** | ||
* Custom variable resource model | ||
* | ||
* @author Magento Core Team <[email protected]> | ||
*/ | ||
class Variable extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb | ||
{ | ||
|
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 |
---|---|---|
|
@@ -7,14 +7,10 @@ | |
|
||
/** | ||
* Custom variable collection | ||
* | ||
* @author Magento Core Team <[email protected]> | ||
*/ | ||
class Collection extends \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection | ||
{ | ||
/** | ||
* Store Id | ||
* | ||
* @var int | ||
*/ | ||
protected $_storeId = 0; | ||
|
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
namespace Magento\Weee\Block\Item\Price; | ||
|
||
use Magento\Framework\Pricing\PriceCurrencyInterface; | ||
use Magento\Sales\Model\Order\CreditMemo\Item as CreditMemoItem; | ||
use Magento\Sales\Model\Order\Creditmemo\Item as CreditMemoItem; | ||
use Magento\Sales\Model\Order\Invoice\Item as InvoiceItem; | ||
use Magento\Sales\Model\Order\Item as OrderItem; | ||
use Magento\Weee\Model\Tax as WeeeDisplayConfig; | ||
|
@@ -15,7 +15,6 @@ | |
* Item price render block | ||
* | ||
* @api | ||
* @author Magento Core Team <[email protected]> | ||
* @since 100.0.2 | ||
*/ | ||
class Renderer extends \Magento\Tax\Block\Item\Price\Renderer | ||
|
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 |
---|---|---|
|
@@ -7,8 +7,6 @@ | |
|
||
/** | ||
* Catalog product WEEE tax backend attribute model | ||
* | ||
* @author Magento Core Team <[email protected]> | ||
*/ | ||
class Tax extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb | ||
{ | ||
|