Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrii-fediuk committed Oct 29, 2020
1 parent 09e6a88 commit 3b318c0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
10 changes: 9 additions & 1 deletion Catalog/lib/objects.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?php
use Df\Core\Exception as DFE;
use Magento\Catalog\Helper\Output as OutputH;
use Magento\Catalog\Model\Locator\LocatorInterface as ILocator;
use Magento\Catalog\Model\Locator\RegistryLocator;
/**
Expand All @@ -11,4 +12,11 @@
function df_catalog_locator() {
df_assert(df_is_backend()); # 2019-08-01 Locator is available only in backend.
return df_o(ILocator::class);
}
}

/**
* 2020-10-30
* @used-by app/design/frontend/TradeFurnitureCompany/default/Magento_Catalog/templates/category/description.phtml
* @return OutputH
*/
function df_catalog_output() {return df_o(OutputH::class);}
1 change: 1 addition & 0 deletions Core/lib/object/om.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ function df_is_virtual($c) {return !!dfa(df_virtual_types(), $c);}
* @used-by df_cart()
* @used-by df_cart_h()
* @used-by df_catalog_locator()
* @used-by df_catalog_output()
* @used-by df_cms_block_r()
* @used-by df_component_r()
* @used-by df_config_field()
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mage2pro/core"
,"version": "7.0.3"
,"version": "7.0.4"
,"description": "Mage2.PRO core package."
,"type": "magento2-module"
,"homepage": "https://mage2.pro"
Expand Down

0 comments on commit 3b318c0

Please sign in to comment.