How to call block function in model Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Access block function in modelmagento 2 how to call any block function in phtmlHow to add function in a block,call this function in templateCall a block function in my controllerMagento 2 - How to call Helper function via Blockhow to override private function in model in Magento-2How to override private function in Model (Magento-2)Call block function from helperMagento2 : Call getViewFileUrl() function in block filefunction in block not found
Why was the term "discrete" used in discrete logarithm?
What do you call a plan that's an alternative plan in case your initial plan fails?
Super Attribute Position on Product Page Magento 1
How widely used is the term Treppenwitz? Is it something that most Germans know?
How to deal with a team lead who never gives me credit?
How do I keep my slimes from escaping their pens?
Is there a documented rationale why the House Ways and Means chairman can demand tax info?
Using et al. for a last / senior author rather than for a first author
Did Xerox really develop the first LAN?
Output the ŋarâþ crîþ alphabet song without using (m)any letters
Gastric acid as a weapon
List *all* the tuples!
How discoverable are IPv6 addresses and AAAA names by potential attackers?
3 doors, three guards, one stone
Is it ethical to give a final exam after the professor has quit before teaching the remaining chapters of the course?
Do you forfeit tax refunds/credits if you aren't required to and don't file by April 15?
What is the longest distance a 13th-level monk can jump while attacking on the same turn?
Stars Make Stars
What would be the ideal power source for a cybernetic eye?
Disable hyphenation for an entire paragraph
Withdrew £2800, but only £2000 shows as withdrawn on online banking; what are my obligations?
What are the motives behind Cersei's orders given to Bronn?
Why did the IBM 650 use bi-quinary?
Can inflation occur in a positive-sum game currency system such as the Stack Exchange reputation system?
How to call block function in model
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Access block function in modelmagento 2 how to call any block function in phtmlHow to add function in a block,call this function in templateCall a block function in my controllerMagento 2 - How to call Helper function via Blockhow to override private function in model in Magento-2How to override private function in Model (Magento-2)Call block function from helperMagento2 : Call getViewFileUrl() function in block filefunction in block not found
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm using TemplateMonter_FeaturedProduct
ang I'm building an API to build mobile application. This extension let me add specific products to appear in specific block on the storefront. Those products are added from admin panel.
when I debug the code I found that to view products on the storefront it reads a block variable.
that's widget.xml file:
<parameter name="product_ids" xsi:type="block" visible="true">
<label translate="true">Choose custom products</label>
<block class="TemplateMonsterFeaturedProductBlockAdminhtmlWidgetChooser">
<data>
<item name="button" xsi:type="array">
<item name="open" xsi:type="string" translate="true">Select ...</item>
</item>
</data>
</block>
</parameter>
and that's block function used on .phtml
public function getProductIds()
$productArr = [];
//TODO: temporary hide manual products
$productIdsStr = $this->getData('product_ids');
//$productIdsStr = false;
if($productIdsStr && is_string($productIdsStr))
$productArr = explode(',',$productIdsStr);
return $productArr;
I need to get the result returned from getProductIds
function in my API module.
Any solutions?
blocks magento-2.1.7
add a comment |
I'm using TemplateMonter_FeaturedProduct
ang I'm building an API to build mobile application. This extension let me add specific products to appear in specific block on the storefront. Those products are added from admin panel.
when I debug the code I found that to view products on the storefront it reads a block variable.
that's widget.xml file:
<parameter name="product_ids" xsi:type="block" visible="true">
<label translate="true">Choose custom products</label>
<block class="TemplateMonsterFeaturedProductBlockAdminhtmlWidgetChooser">
<data>
<item name="button" xsi:type="array">
<item name="open" xsi:type="string" translate="true">Select ...</item>
</item>
</data>
</block>
</parameter>
and that's block function used on .phtml
public function getProductIds()
$productArr = [];
//TODO: temporary hide manual products
$productIdsStr = $this->getData('product_ids');
//$productIdsStr = false;
if($productIdsStr && is_string($productIdsStr))
$productArr = explode(',',$productIdsStr);
return $productArr;
I need to get the result returned from getProductIds
function in my API module.
Any solutions?
blocks magento-2.1.7
add a comment |
I'm using TemplateMonter_FeaturedProduct
ang I'm building an API to build mobile application. This extension let me add specific products to appear in specific block on the storefront. Those products are added from admin panel.
when I debug the code I found that to view products on the storefront it reads a block variable.
that's widget.xml file:
<parameter name="product_ids" xsi:type="block" visible="true">
<label translate="true">Choose custom products</label>
<block class="TemplateMonsterFeaturedProductBlockAdminhtmlWidgetChooser">
<data>
<item name="button" xsi:type="array">
<item name="open" xsi:type="string" translate="true">Select ...</item>
</item>
</data>
</block>
</parameter>
and that's block function used on .phtml
public function getProductIds()
$productArr = [];
//TODO: temporary hide manual products
$productIdsStr = $this->getData('product_ids');
//$productIdsStr = false;
if($productIdsStr && is_string($productIdsStr))
$productArr = explode(',',$productIdsStr);
return $productArr;
I need to get the result returned from getProductIds
function in my API module.
Any solutions?
blocks magento-2.1.7
I'm using TemplateMonter_FeaturedProduct
ang I'm building an API to build mobile application. This extension let me add specific products to appear in specific block on the storefront. Those products are added from admin panel.
when I debug the code I found that to view products on the storefront it reads a block variable.
that's widget.xml file:
<parameter name="product_ids" xsi:type="block" visible="true">
<label translate="true">Choose custom products</label>
<block class="TemplateMonsterFeaturedProductBlockAdminhtmlWidgetChooser">
<data>
<item name="button" xsi:type="array">
<item name="open" xsi:type="string" translate="true">Select ...</item>
</item>
</data>
</block>
</parameter>
and that's block function used on .phtml
public function getProductIds()
$productArr = [];
//TODO: temporary hide manual products
$productIdsStr = $this->getData('product_ids');
//$productIdsStr = false;
if($productIdsStr && is_string($productIdsStr))
$productArr = explode(',',$productIdsStr);
return $productArr;
I need to get the result returned from getProductIds
function in my API module.
Any solutions?
blocks magento-2.1.7
blocks magento-2.1.7
asked Apr 11 at 23:39
Yomna MansourYomna Mansour
32212
32212
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f269796%2fhow-to-call-block-function-in-model%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f269796%2fhow-to-call-block-function-in-model%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown