File tree Expand file tree Collapse file tree 13 files changed +11
-24
lines changed
Variable/Model/ResourceModel
Model/ResourceModel/Attribute/Backend/Weee Expand file tree Collapse file tree 13 files changed +11
-24
lines changed Original file line number Diff line number Diff line change 1212
1313/**
1414 * Categories tree block for URL rewrites editing process
15- *
16- * @author Magento Core Team <core@magentocommerce.com>
1715 */
1816class Tree extends \Magento \Catalog \Block \Adminhtml \Category \AbstractCategory
1917{
Original file line number Diff line number Diff line change 88/**
99 * Products grid for URL rewrites editing
1010 *
11- * @author Magento Core Team <core@magentocommerce.com>
1211 * @SuppressWarnings(PHPMD.DepthOfInheritance)
1312 */
1413class Grid extends \Magento \Catalog \Block \Adminhtml \Product \Grid
Original file line number Diff line number Diff line change 88/**
99 * CMS pages grid for URL rewrites
1010 *
11- * @author Magento Core Team <core@magentocommerce.com>
1211 * @SuppressWarnings(PHPMD.DepthOfInheritance)
1312 */
1413class Grid extends \Magento \Cms \Block \Adminhtml \Page \Grid
Original file line number Diff line number Diff line change 99 * Magento_User role block
1010 *
1111 * @api
12- * @author Magento Core Team <core@magentocommerce.com>
1312 * @since 100.0.2
1413 */
1514class Role extends \Magento \Backend \Block \Widget \Grid \Container
@@ -37,6 +36,8 @@ protected function _construct()
3736 }
3837
3938 /**
39+ * Get a URL to create a role
40+ *
4041 * @return string
4142 */
4243 public function getCreateUrl ()
@@ -45,6 +46,8 @@ public function getCreateUrl()
4546 }
4647
4748 /**
49+ * Prepare the layout
50+ *
4851 * @return $this
4952 */
5053 protected function _prepareLayout ()
Original file line number Diff line number Diff line change 99 * User block
1010 *
1111 * @api
12- * @author Magento Core Team <core@magentocommerce.com>
1312 * @since 100.0.2
1413 */
1514class User extends \Magento \Backend \Block \Widget \Grid \Container
Original file line number Diff line number Diff line change 1010 * User edit page
1111 *
1212 * @api
13- * @author Magento Core Team <core@magentocommerce.com>
1413 * @since 100.0.2
1514 */
1615class Edit extends \Magento \Backend \Block \Widget \Form \Container
1716{
1817 /**
19- * Core registry
20- *
2118 * @var \Magento\Framework\Registry
2219 */
2320 protected $ _coreRegistry = null ;
@@ -121,6 +118,8 @@ public function getObjectId()
121118 }
122119
123120 /**
121+ * Get text to be used in the header
122+ *
124123 * @return \Magento\Framework\Phrase
125124 */
126125 public function getHeaderText ()
Original file line number Diff line number Diff line change 99 * User page left menu
1010 *
1111 * @api
12- * @author Magento Core Team <core@magentocommerce.com>
1312 * @since 100.0.2
1413 */
1514class Tabs extends \Magento \Backend \Block \Widget \Tabs
@@ -28,6 +27,8 @@ protected function _construct()
2827 }
2928
3029 /**
30+ * Add tabs to the HTML
31+ *
3132 * @return $this
3233 */
3334 protected function _beforeToHtml ()
Original file line number Diff line number Diff line change 77
88/**
99 * Admin role users collection
10- *
11- * @author Magento Core Team <core@magentocommerce.com>
1210 */
1311class Collection extends \Magento \Framework \Model \ResourceModel \Db \Collection \AbstractCollection
1412{
Original file line number Diff line number Diff line change 77
88/**
99 * Admin user collection
10- *
11- * @author Magento Core Team <core@magentocommerce.com>
1210 */
1311class Collection extends \Magento \User \Model \ResourceModel \User \Collection
1412{
@@ -22,5 +20,7 @@ protected function _initSelect()
2220 {
2321 parent ::_initSelect ();
2422 $ this ->addFieldToFilter ('lock_expires ' , ['notnull ' => true ]);
23+
24+ return $ this ;
2525 }
2626}
Original file line number Diff line number Diff line change 88
99/**
1010 * Custom variable resource model
11- *
12- * @author Magento Core Team <core@magentocommerce.com>
1311 */
1412class Variable extends \Magento \Framework \Model \ResourceModel \Db \AbstractDb
1513{
You can’t perform that action at this time.
0 commit comments