Magento 2: Custom block cannot createdHow to call a model method from controller in Magento2magento 2 captcha...
Removing whitespace between consecutive numbers
Is the child responsible for the Parent PLUS Loan when the parent has passed away?
Is there a verb that means to inject with poison?
Building an exterior wall within an exterior wall for insulation
How to assess the long-term stability of a college as part of a job search
Is there a lava-breathing lizard creature (that could be worshipped by a cult) in 5e?
How can I play a serial killer in a party of good PCs?
Why is Agricola named as such?
What game did these black and yellow dice come from?
How do you voice extended chords?
Which communication protocol is used in AdLib sound card?
Why does photorec keep finding files after I have filled the disk free space as root?
How can the probability of a fumble decrease linearly with more dice?
What is the difference between rolling more dice versus fewer dice?
How do you catch Smeargle in Pokemon Go?
Citing paywalled articles accessed via illegal web sharing
Is there a defined priority for pattern matching?
Why avoid shared user accounts?
Explanation of a regular pattern only occuring for prime numbers
Bash script to truncate subject line of incoming email
Separate environment for personal and development use under macOS
Boss asked me to sign a resignation paper without a date on it along with my new contract
What is the difference between "...", '...', $'...', and $"..." quotes?
Plausible reason for gold-digging ant
Magento 2: Custom block cannot created
How to call a model method from controller in Magento2magento 2 captcha not rendering if I override layout xmlI created a custom module ,but getting error, not able to figure out what the error is about. How to get out of this error?main.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Although I use the correct namespace a wrong instance is passed to the constructorMagento 2 Create dynamic array From different Model Collection to use in multi select in gridMagento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 Can't view module's front end page output?
Block
<?php
namespace TestConfigureproductBlockIndex;
class ConfigureProductCollection extends MagentoFrameworkViewElementTemplate
{
public function __construct(MagentoFrameworkViewElementTemplateContext $context)
{
parent::__construct($context);
}
public function sayHello()
{
return __('Hello World');
}
}
Controller
<?php
namespace TestConfigureproductControllerIndex;
class Configure extends MagentoFrameworkAppActionAction
{
protected $_pageFactory;
public function __construct(
MagentoFrameworkAppActionContext $context,
MagentoFrameworkViewResultPageFactory $pageFactory)
{
$this->_pageFactory = $pageFactory;
return parent::__construct($context);
}
public function execute()
{
return $this->_pageFactory->create();
}}
XML
<?xml version="1.0"?><page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<referenceContainer name="content">
<block class="TestConfigureproductBlockIndexConfigureProductCollection" name="configure_product_view" template="Test_Configureproduct::configure_product.phtml" />
</referenceContainer></page>
magento2 blocks
add a comment |
Block
<?php
namespace TestConfigureproductBlockIndex;
class ConfigureProductCollection extends MagentoFrameworkViewElementTemplate
{
public function __construct(MagentoFrameworkViewElementTemplateContext $context)
{
parent::__construct($context);
}
public function sayHello()
{
return __('Hello World');
}
}
Controller
<?php
namespace TestConfigureproductControllerIndex;
class Configure extends MagentoFrameworkAppActionAction
{
protected $_pageFactory;
public function __construct(
MagentoFrameworkAppActionContext $context,
MagentoFrameworkViewResultPageFactory $pageFactory)
{
$this->_pageFactory = $pageFactory;
return parent::__construct($context);
}
public function execute()
{
return $this->_pageFactory->create();
}}
XML
<?xml version="1.0"?><page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<referenceContainer name="content">
<block class="TestConfigureproductBlockIndexConfigureProductCollection" name="configure_product_view" template="Test_Configureproduct::configure_product.phtml" />
</referenceContainer></page>
magento2 blocks
have u create module.xml and registration.php?
– Amit Bera♦
37 secs ago
please provide code of router.xml
– Amit Bera♦
5 secs ago
Everything above looks correct, update your xml code into frontename_controllername_action.xml
– G Prathap
just now
Yes, I have created.
– Masud Shaikh
just now
add a comment |
Block
<?php
namespace TestConfigureproductBlockIndex;
class ConfigureProductCollection extends MagentoFrameworkViewElementTemplate
{
public function __construct(MagentoFrameworkViewElementTemplateContext $context)
{
parent::__construct($context);
}
public function sayHello()
{
return __('Hello World');
}
}
Controller
<?php
namespace TestConfigureproductControllerIndex;
class Configure extends MagentoFrameworkAppActionAction
{
protected $_pageFactory;
public function __construct(
MagentoFrameworkAppActionContext $context,
MagentoFrameworkViewResultPageFactory $pageFactory)
{
$this->_pageFactory = $pageFactory;
return parent::__construct($context);
}
public function execute()
{
return $this->_pageFactory->create();
}}
XML
<?xml version="1.0"?><page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<referenceContainer name="content">
<block class="TestConfigureproductBlockIndexConfigureProductCollection" name="configure_product_view" template="Test_Configureproduct::configure_product.phtml" />
</referenceContainer></page>
magento2 blocks
Block
<?php
namespace TestConfigureproductBlockIndex;
class ConfigureProductCollection extends MagentoFrameworkViewElementTemplate
{
public function __construct(MagentoFrameworkViewElementTemplateContext $context)
{
parent::__construct($context);
}
public function sayHello()
{
return __('Hello World');
}
}
Controller
<?php
namespace TestConfigureproductControllerIndex;
class Configure extends MagentoFrameworkAppActionAction
{
protected $_pageFactory;
public function __construct(
MagentoFrameworkAppActionContext $context,
MagentoFrameworkViewResultPageFactory $pageFactory)
{
$this->_pageFactory = $pageFactory;
return parent::__construct($context);
}
public function execute()
{
return $this->_pageFactory->create();
}}
XML
<?xml version="1.0"?><page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<referenceContainer name="content">
<block class="TestConfigureproductBlockIndexConfigureProductCollection" name="configure_product_view" template="Test_Configureproduct::configure_product.phtml" />
</referenceContainer></page>
magento2 blocks
magento2 blocks
edited 1 min ago
Amit Bera♦
58.7k1475174
58.7k1475174
asked 4 mins ago
Masud ShaikhMasud Shaikh
320111
320111
have u create module.xml and registration.php?
– Amit Bera♦
37 secs ago
please provide code of router.xml
– Amit Bera♦
5 secs ago
Everything above looks correct, update your xml code into frontename_controllername_action.xml
– G Prathap
just now
Yes, I have created.
– Masud Shaikh
just now
add a comment |
have u create module.xml and registration.php?
– Amit Bera♦
37 secs ago
please provide code of router.xml
– Amit Bera♦
5 secs ago
Everything above looks correct, update your xml code into frontename_controllername_action.xml
– G Prathap
just now
Yes, I have created.
– Masud Shaikh
just now
have u create module.xml and registration.php?
– Amit Bera♦
37 secs ago
have u create module.xml and registration.php?
– Amit Bera♦
37 secs ago
please provide code of router.xml
– Amit Bera♦
5 secs ago
please provide code of router.xml
– Amit Bera♦
5 secs ago
Everything above looks correct, update your xml code into frontename_controllername_action.xml
– G Prathap
just now
Everything above looks correct, update your xml code into frontename_controllername_action.xml
– G Prathap
just now
Yes, I have created.
– Masud Shaikh
just now
Yes, I have created.
– Masud Shaikh
just now
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%2f263597%2fmagento-2-custom-block-cannot-created%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%2f263597%2fmagento-2-custom-block-cannot-created%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
have u create module.xml and registration.php?
– Amit Bera♦
37 secs ago
please provide code of router.xml
– Amit Bera♦
5 secs ago
Everything above looks correct, update your xml code into frontename_controllername_action.xml
– G Prathap
just now
Yes, I have created.
– Masud Shaikh
just now