-
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.
* GitHub requests: * [#134] (#134) Fixed a typo in "Vorarlberg" region of Austria (was Voralberg) * Fixed bugs: * Fixed an issue with the "Add to Cart" button on the MAP popup of compound products * Fixed an issue where the "Add Address" button for Customer in Admin was broken * Fixed an issue where predefined data are not loaded for a newsletter when it is added to a queue * Indexer implementation: * Implemented a new optimized Catalog Category Product Indexer * Implemented a new optimized Catalog Category Flat Indexer * Implemented a new optimized Catalog Product Flat Indexer * Modularity improvements: * Moved all Configurable Product functionality to a newly created ConfigurableProduct module * Moved the Shortcut Buttons abstraction from PayPal to Catalog * Moved the Recurring profile functionality to a separate module * Moved the Billing Agreements functionality to the PayPal module * Finalized the work on resolving dependencies between the Multishipping module, and all other modules. Module can be removed without any impact on the system * Customer Service usage: * Updated Customer Group Grid to use Customer Service for data retrieving and filtering * Updated CustomerMetadataService::getAttributeMetadata to throw an exception if invalid code is provided * Unified the format of specifying arguments for class constructors in DI and in Layout configuration: * A common xsd schema is being used for defining simple types. Layout and DI customize common types with their specific ones * Argument processing is unified, and moved to library
- Loading branch information
1 parent
4ca7da2
commit d5d8091
Showing
1,457 changed files
with
37,288 additions
and
21,230 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,7 @@ | |
* @copyright Copyright (c) 2014 X.commerce, Inc. (http://www.magentocommerce.com) | ||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | ||
*/ | ||
namespace Magento\AdminNotification\Block; | ||
|
||
/** | ||
* Toolbar entry that shows latest notifications | ||
|
@@ -31,8 +32,6 @@ | |
* @package Magento_AdminNotification | ||
* @author Magento Core Team <[email protected]> | ||
*/ | ||
namespace Magento\AdminNotification\Block; | ||
|
||
class ToolbarEntry extends \Magento\Backend\Block\Template | ||
{ | ||
/** | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ | |
* @copyright Copyright (c) 2014 X.commerce, Inc. (http://www.magentocommerce.com) | ||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | ||
*/ | ||
|
||
namespace Magento\AdminNotification\Controller\Adminhtml; | ||
|
||
/** | ||
* Adminhtml Survey Action | ||
|
@@ -32,13 +32,12 @@ | |
* @package Magento_Adminhtml | ||
* @author Magento Core Team <[email protected]> | ||
*/ | ||
namespace Magento\AdminNotification\Controller\Adminhtml; | ||
|
||
class Survey extends \Magento\Backend\App\Action | ||
{ | ||
/** | ||
* Index Action | ||
* | ||
* @return void | ||
*/ | ||
public function indexAction() | ||
{ | ||
|
@@ -51,7 +50,7 @@ public function indexAction() | |
/** | ||
* Check if user has enough privileges | ||
* | ||
* @return boolean | ||
* @return bool | ||
*/ | ||
protected function _isAllowed() | ||
{ | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ | |
* @copyright Copyright (c) 2014 X.commerce, Inc. (http://www.magentocommerce.com) | ||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | ||
*/ | ||
|
||
namespace Magento\AdminNotification\Helper; | ||
|
||
/** | ||
* AdminNotification Data helper | ||
|
@@ -32,8 +32,6 @@ | |
* @package Magento_AdminNotification | ||
* @author Magento Core Team <[email protected]> | ||
*/ | ||
namespace Magento\AdminNotification\Helper; | ||
|
||
class Data extends \Magento\App\Helper\AbstractHelper | ||
{ | ||
const XML_PATH_POPUP_URL = 'system/adminnotification/popup_url'; | ||
|
@@ -60,7 +58,7 @@ class Data extends \Magento\App\Helper\AbstractHelper | |
protected $_latestNotice; | ||
|
||
/** | ||
* count of unread notes by type | ||
* Count of unread notes by type | ||
* | ||
* @var array | ||
*/ | ||
|
@@ -76,6 +74,11 @@ class Data extends \Magento\App\Helper\AbstractHelper | |
*/ | ||
protected $_inboxFactory; | ||
|
||
/** | ||
* @param \Magento\App\Helper\Context $context | ||
* @param \Magento\Core\Model\Store\Config $coreStoreConfig | ||
* @param \Magento\AdminNotification\Model\InboxFactory $inboxFactory | ||
*/ | ||
public function __construct( | ||
\Magento\App\Helper\Context $context, | ||
\Magento\Core\Model\Store\Config $coreStoreConfig, | ||
|
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 |
---|---|---|
|
@@ -23,7 +23,7 @@ | |
* @copyright Copyright (c) 2014 X.commerce, Inc. (http://www.magentocommerce.com) | ||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | ||
*/ | ||
|
||
namespace Magento\AdminNotification\Model\Config\Source; | ||
|
||
/** | ||
* AdminNotification update frequency source | ||
|
@@ -32,10 +32,11 @@ | |
* @package Magento_AdminNotification | ||
* @author Magento Core Team <[email protected]> | ||
*/ | ||
namespace Magento\AdminNotification\Model\Config\Source; | ||
|
||
class Frequency implements \Magento\Core\Model\Option\ArrayInterface | ||
{ | ||
/** | ||
* @return array | ||
*/ | ||
public function toOptionArray() | ||
{ | ||
return array( | ||
|
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 |
---|---|---|
|
@@ -23,7 +23,7 @@ | |
* @copyright Copyright (c) 2014 X.commerce, Inc. (http://www.magentocommerce.com) | ||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | ||
*/ | ||
|
||
namespace Magento\AdminNotification\Model; | ||
|
||
/** | ||
* AdminNotification Feed model | ||
|
@@ -32,8 +32,6 @@ | |
* @package Magento_AdminNotification | ||
* @author Magento Core Team <[email protected]> | ||
*/ | ||
namespace Magento\AdminNotification\Model; | ||
|
||
class Feed extends \Magento\Core\Model\AbstractModel | ||
{ | ||
const XML_USE_HTTPS_PATH = 'system/adminnotification/use_https'; | ||
|
@@ -84,6 +82,7 @@ public function __construct( | |
/** | ||
* Init model | ||
* | ||
* @return void | ||
*/ | ||
protected function _construct() | ||
{ | ||
|
@@ -107,7 +106,7 @@ public function getFeedUrl() | |
/** | ||
* Check feed for modification | ||
* | ||
* @return \Magento\AdminNotification\Model\Feed | ||
* @return $this | ||
*/ | ||
public function checkUpdate() | ||
{ | ||
|
@@ -174,7 +173,7 @@ public function getLastUpdate() | |
/** | ||
* Set last update time (now) | ||
* | ||
* @return \Magento\AdminNotification\Model\Feed | ||
* @return $this | ||
*/ | ||
public function setLastUpdate() | ||
{ | ||
|
@@ -212,6 +211,9 @@ public function getFeedData() | |
return $xml; | ||
} | ||
|
||
/** | ||
* @return \SimpleXMLElement | ||
*/ | ||
public function getFeedXml() | ||
{ | ||
try { | ||
|
Oops, something went wrong.