File tree 13 files changed +11
-24
lines changed
Variable/Model/ResourceModel
Model/ResourceModel/Attribute/Backend/Weee
13 files changed +11
-24
lines changed Original file line number Diff line number Diff line change 12
12
13
13
/**
14
14
* Categories tree block for URL rewrites editing process
15
- *
16
- * @author Magento Core Team <core@magentocommerce.com>
17
15
*/
18
16
class Tree extends \Magento \Catalog \Block \Adminhtml \Category \AbstractCategory
19
17
{
Original file line number Diff line number Diff line change 8
8
/**
9
9
* Products grid for URL rewrites editing
10
10
*
11
- * @author Magento Core Team <core@magentocommerce.com>
12
11
* @SuppressWarnings(PHPMD.DepthOfInheritance)
13
12
*/
14
13
class Grid extends \Magento \Catalog \Block \Adminhtml \Product \Grid
Original file line number Diff line number Diff line change 8
8
/**
9
9
* CMS pages grid for URL rewrites
10
10
*
11
- * @author Magento Core Team <core@magentocommerce.com>
12
11
* @SuppressWarnings(PHPMD.DepthOfInheritance)
13
12
*/
14
13
class Grid extends \Magento \Cms \Block \Adminhtml \Page \Grid
Original file line number Diff line number Diff line change 9
9
* Magento_User role block
10
10
*
11
11
* @api
12
- * @author Magento Core Team <core@magentocommerce.com>
13
12
* @since 100.0.2
14
13
*/
15
14
class Role extends \Magento \Backend \Block \Widget \Grid \Container
@@ -37,6 +36,8 @@ protected function _construct()
37
36
}
38
37
39
38
/**
39
+ * Get a URL to create a role
40
+ *
40
41
* @return string
41
42
*/
42
43
public function getCreateUrl ()
@@ -45,6 +46,8 @@ public function getCreateUrl()
45
46
}
46
47
47
48
/**
49
+ * Prepare the layout
50
+ *
48
51
* @return $this
49
52
*/
50
53
protected function _prepareLayout ()
Original file line number Diff line number Diff line change 9
9
* User block
10
10
*
11
11
* @api
12
- * @author Magento Core Team <core@magentocommerce.com>
13
12
* @since 100.0.2
14
13
*/
15
14
class User extends \Magento \Backend \Block \Widget \Grid \Container
Original file line number Diff line number Diff line change 10
10
* User edit page
11
11
*
12
12
* @api
13
- * @author Magento Core Team <core@magentocommerce.com>
14
13
* @since 100.0.2
15
14
*/
16
15
class Edit extends \Magento \Backend \Block \Widget \Form \Container
17
16
{
18
17
/**
19
- * Core registry
20
- *
21
18
* @var \Magento\Framework\Registry
22
19
*/
23
20
protected $ _coreRegistry = null ;
@@ -121,6 +118,8 @@ public function getObjectId()
121
118
}
122
119
123
120
/**
121
+ * Get text to be used in the header
122
+ *
124
123
* @return \Magento\Framework\Phrase
125
124
*/
126
125
public function getHeaderText ()
Original file line number Diff line number Diff line change 9
9
* User page left menu
10
10
*
11
11
* @api
12
- * @author Magento Core Team <core@magentocommerce.com>
13
12
* @since 100.0.2
14
13
*/
15
14
class Tabs extends \Magento \Backend \Block \Widget \Tabs
@@ -28,6 +27,8 @@ protected function _construct()
28
27
}
29
28
30
29
/**
30
+ * Add tabs to the HTML
31
+ *
31
32
* @return $this
32
33
*/
33
34
protected function _beforeToHtml ()
Original file line number Diff line number Diff line change 7
7
8
8
/**
9
9
* Admin role users collection
10
- *
11
- * @author Magento Core Team <core@magentocommerce.com>
12
10
*/
13
11
class Collection extends \Magento \Framework \Model \ResourceModel \Db \Collection \AbstractCollection
14
12
{
Original file line number Diff line number Diff line change 7
7
8
8
/**
9
9
* Admin user collection
10
- *
11
- * @author Magento Core Team <core@magentocommerce.com>
12
10
*/
13
11
class Collection extends \Magento \User \Model \ResourceModel \User \Collection
14
12
{
@@ -22,5 +20,7 @@ protected function _initSelect()
22
20
{
23
21
parent ::_initSelect ();
24
22
$ this ->addFieldToFilter ('lock_expires ' , ['notnull ' => true ]);
23
+
24
+ return $ this ;
25
25
}
26
26
}
Original file line number Diff line number Diff line change 8
8
9
9
/**
10
10
* Custom variable resource model
11
- *
12
- * @author Magento Core Team <core@magentocommerce.com>
13
11
*/
14
12
class Variable extends \Magento \Framework \Model \ResourceModel \Db \AbstractDb
15
13
{
Original file line number Diff line number Diff line change 7
7
8
8
/**
9
9
* Custom variable collection
10
- *
11
- * @author Magento Core Team <core@magentocommerce.com>
12
10
*/
13
11
class Collection extends \Magento \Framework \Model \ResourceModel \Db \Collection \AbstractCollection
14
12
{
15
13
/**
16
- * Store Id
17
- *
18
14
* @var int
19
15
*/
20
16
protected $ _storeId = 0 ;
Original file line number Diff line number Diff line change 6
6
namespace Magento \Weee \Block \Item \Price ;
7
7
8
8
use Magento \Framework \Pricing \PriceCurrencyInterface ;
9
- use Magento \Sales \Model \Order \CreditMemo \Item as CreditMemoItem ;
9
+ use Magento \Sales \Model \Order \Creditmemo \Item as CreditMemoItem ;
10
10
use Magento \Sales \Model \Order \Invoice \Item as InvoiceItem ;
11
11
use Magento \Sales \Model \Order \Item as OrderItem ;
12
12
use Magento \Weee \Model \Tax as WeeeDisplayConfig ;
15
15
* Item price render block
16
16
*
17
17
* @api
18
- * @author Magento Core Team <core@magentocommerce.com>
19
18
* @since 100.0.2
20
19
*/
21
20
class Renderer extends \Magento \Tax \Block \Item \Price \Renderer
Original file line number Diff line number Diff line change 7
7
8
8
/**
9
9
* Catalog product WEEE tax backend attribute model
10
- *
11
- * @author Magento Core Team <core@magentocommerce.com>
12
10
*/
13
11
class Tax extends \Magento \Framework \Model \ResourceModel \Db \AbstractDb
14
12
{
You can’t perform that action at this time.
0 commit comments