Error in custom Admin menu controller - Magento 2 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?Magento 2 Custom module admin controller errorHow can i rewrite TierPrice Block 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?Magento 2: How to override newsletter Subscriber modelForm is not displayed on panel admin Magento 2Magento 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?

Using audio cues to encourage good posture

What is homebrew?

Can a party unilaterally change candidates in preparation for a General election?

Do I really need to have a message in a novel to appeal to readers?

An adverb for when you're not exaggerating

If u is orthogonal to both v and w, and u not equal to 0, argue that u is not in the span of v and w. (

Has negative voting ever been officially implemented in elections, or seriously proposed, or even studied?

First console to have temporary backward compatibility

How to convince students of the implication truth values?

Dating a Former Employee

Maximum summed powersets with non-adjacent items

What does "lightly crushed" mean for cardamon pods?

How to write this math term? with cases it isn't working

What would be the ideal power source for a cybernetic eye?

Around usage results

How come Sam didn't become Lord of Horn Hill?

When a candle burns, why does the top of wick glow if bottom of flame is hottest?

Can an alien society believe that their star system is the universe?

What is the meaning of the new sigil in Game of Thrones Season 8 intro?

Crossing US/Canada Border for less than 24 hours

Is "Reachable Object" really an NP-complete problem?

What does this Jacques Hadamard quote mean?

Should I use a zero-interest credit card for a large one-time purchase?

Why are both D and D# fitting into my E minor key?



Error in custom Admin menu controller - Magento 2



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?Magento 2 Custom module admin controller errorHow can i rewrite TierPrice Block 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?Magento 2: How to override newsletter Subscriber modelForm is not displayed on panel admin Magento 2Magento 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?



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I created a custom menu but got this error.




Fatal error: Class NewsLatestNewsControllerAdminhtmlNews contains
1 abstract method and must therefore be declared abstract or implement
the remaining methods (MagentoFrameworkAppActionInterface::execute)
in
C:xampphtdocsmagento3appcodeNewsLatestNewsControllerAdminhtmlNews.php
on line 12




these are the codes



NewsLatestNewsControllerAdminhtmlNews.php



<?php 
namespace NewsLatestNewsControllerAdminhtml;

use MagentoBackendAppAction;
use MagentoBackendAppActionContext;
use MagentoFrameworkRegistry;
use MagentoFrameworkViewResultPageFactory;
use NewsLatestNewsModelNewsFactory;

abstract class News extends Action

/**
* Core registry
*
* @var MagentoFrameworkRegistry
*/
protected $_coreRegistry;

/**
* Result page factory
*
* @var MagentoFrameworkViewResultPageFactory
*/
protected $_resultPageFactory;

/**
* News model factory
*
* @var NewsLatestNewsModelNewsFactory
*/
protected $_newsFactory;

/**
* @param Context $context
* @param Registry $coreRegistry
* @param PageFactory $resultPageFactory
* @param NewsFactory $newsFactory
*/
public function __construct(Context $context,
Registry $coreRegistry,
PageFactory $resultPageFactory,
NewsFactory $newsFactory
)
parent::__construct($context);
$this->_coreRegistry = $coreRegistry;
$this->_resultPageFactory = $resultPageFactory;
$this->_newsFactory = $newsFactory;


/**
* News access rights checking
*
* @return bool
*/
protected function _isAllowed()

return $this->_authorization->isAllowed('News_LatestNews::manage_news');




NewsLatestNewsControllerAdminhtmlNewsIndex.php



<?php

namespace NewsLatestNewsControllerAdminhtmlNews;

use NewsLatestNewsControllerAdminhtmlNews;

class Index extends News

/**
* @return void
*/
public function execute()

if ($this->getRequest()->getQuery('ajax'))
$this->_forward('grid');
return;


/** @var MagentoBackendModelViewResultPage $resultPage */
$resultPage = $this->_resultPageFactory->create();
$resultPage->setActiveMenu('News_LatestNews::main_menu');
$resultPage->getConfig()->getTitle()->prepend(__('Simple News'));

return $resultPage;




NewsLatestNewsBlockAdminhtmlNewsNews.php



<?php

namespace NewsLatestNewsBlockAdminhtml;

use MagentoBackendBlockWidgetGridContainer;

class News extends Container

/**
* Constructor
*
* @return void
*/
protected function _construct()

$this->_controller = 'adminhtml_news';
$this->_blockGroup = 'News_LatestNews';
$this->_headerText = __('Manage News');
$this->_addButtonLabel = __('Add News');
parent::_construct();




NewsLatestNewsetcadminhtmlmenu.xml



<?xml version="1.0"?>

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../Backend/etc/menu.xsd">
<menu>
<add id="News_LatestNews::main_menu" title="Simple News"
module="News_LatestNews" sortOrder="20"
resource="News_LatestNews::simplenews" />
<add id="News_LatestNews::add_news" title="Add News"
module="News_LatestNews" sortOrder="1" parent="News_LatestNews::main_menu"
action="simplenews/news/new" resource="News_LatestNews::manage_news" />
<add id="News_LatestNews::manage_news" title="Manage News"
module="News_LatestNews" sortOrder="2" parent="News_LatestNews::main_menu"
action="simplenews/news/index" resource="News_LatestNews::manage_news" />
<add id="News_LatestNews::configuration" title="Configurations"
module="News_LatestNews" sortOrder="3" parent="News_LatestNews::main_menu"
action="adminhtml/system_config/edit/section/simplenews"
resource="News_LatestNews::configuration" />
</menu>
</config>


NewsLatestNewsetcadminhtmlroutes.xml



<?xml version="1.0"?>

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../lib/internal/Magento/Framework/App/etc/routes.xsd">
<router id="admin">
<route id="simplenews" frontName="simplenews">
<!-- <module name="Tutorial_SimpleNews" /> -->
<module name="News_LatestNews" />
</route>
</router>
</config>


NewsLatestNewsetcacl.xml



<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Acl/etc/acl.xsd">
<acl>
<resources>
<resource id="Magento_Backend::admin">
<resource id="News_LatestNews::simplenews" title="Simple News"
sortOrder="100">
<resource id="News_LatestNews::add_news" title="Add News"
sortOrder="1" />
<resource id="News_LatestNews::manage_news" title="Manage News"
sortOrder="2" />
<resource id="News_LatestNews::configuration" title="Configurations"
sortOrder="3" />
</resource>

<resource id="Magento_Backend::stores">
<resource id="Magento_Backend::stores_settings">
<resource id="Magento_Config::config">
<resource id="News_LatestNews::config" title="News Configuration" sortOrder="50" />
</resource>
</resource>
</resource>
</resource>
</resources>
</acl>
</config>


NewsLatestNewsetcmodule.xml



<?xml version="1.0"?>

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="News_LatestNews" setup_version="1.0.2" active="true">
</module>
</config>


Edit:



1 exception(s):
Exception #0 (InvalidArgumentException): Boolean value is expected, supported values: array (
0 => true,
1 => 1,
2 => 'true',
3 => '1',
4 => false,
5 => 0,
6 => 'false',
7 => '0',
)









share|improve this question
























  • php bin/magento setup:di:compile run & check

    – Ankit Shah
    Feb 17 '17 at 6:01











  • delete vargeneration folder and check.

    – Anand Ontigeri
    Feb 17 '17 at 6:05

















0















I created a custom menu but got this error.




Fatal error: Class NewsLatestNewsControllerAdminhtmlNews contains
1 abstract method and must therefore be declared abstract or implement
the remaining methods (MagentoFrameworkAppActionInterface::execute)
in
C:xampphtdocsmagento3appcodeNewsLatestNewsControllerAdminhtmlNews.php
on line 12




these are the codes



NewsLatestNewsControllerAdminhtmlNews.php



<?php 
namespace NewsLatestNewsControllerAdminhtml;

use MagentoBackendAppAction;
use MagentoBackendAppActionContext;
use MagentoFrameworkRegistry;
use MagentoFrameworkViewResultPageFactory;
use NewsLatestNewsModelNewsFactory;

abstract class News extends Action

/**
* Core registry
*
* @var MagentoFrameworkRegistry
*/
protected $_coreRegistry;

/**
* Result page factory
*
* @var MagentoFrameworkViewResultPageFactory
*/
protected $_resultPageFactory;

/**
* News model factory
*
* @var NewsLatestNewsModelNewsFactory
*/
protected $_newsFactory;

/**
* @param Context $context
* @param Registry $coreRegistry
* @param PageFactory $resultPageFactory
* @param NewsFactory $newsFactory
*/
public function __construct(Context $context,
Registry $coreRegistry,
PageFactory $resultPageFactory,
NewsFactory $newsFactory
)
parent::__construct($context);
$this->_coreRegistry = $coreRegistry;
$this->_resultPageFactory = $resultPageFactory;
$this->_newsFactory = $newsFactory;


/**
* News access rights checking
*
* @return bool
*/
protected function _isAllowed()

return $this->_authorization->isAllowed('News_LatestNews::manage_news');




NewsLatestNewsControllerAdminhtmlNewsIndex.php



<?php

namespace NewsLatestNewsControllerAdminhtmlNews;

use NewsLatestNewsControllerAdminhtmlNews;

class Index extends News

/**
* @return void
*/
public function execute()

if ($this->getRequest()->getQuery('ajax'))
$this->_forward('grid');
return;


/** @var MagentoBackendModelViewResultPage $resultPage */
$resultPage = $this->_resultPageFactory->create();
$resultPage->setActiveMenu('News_LatestNews::main_menu');
$resultPage->getConfig()->getTitle()->prepend(__('Simple News'));

return $resultPage;




NewsLatestNewsBlockAdminhtmlNewsNews.php



<?php

namespace NewsLatestNewsBlockAdminhtml;

use MagentoBackendBlockWidgetGridContainer;

class News extends Container

/**
* Constructor
*
* @return void
*/
protected function _construct()

$this->_controller = 'adminhtml_news';
$this->_blockGroup = 'News_LatestNews';
$this->_headerText = __('Manage News');
$this->_addButtonLabel = __('Add News');
parent::_construct();




NewsLatestNewsetcadminhtmlmenu.xml



<?xml version="1.0"?>

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../Backend/etc/menu.xsd">
<menu>
<add id="News_LatestNews::main_menu" title="Simple News"
module="News_LatestNews" sortOrder="20"
resource="News_LatestNews::simplenews" />
<add id="News_LatestNews::add_news" title="Add News"
module="News_LatestNews" sortOrder="1" parent="News_LatestNews::main_menu"
action="simplenews/news/new" resource="News_LatestNews::manage_news" />
<add id="News_LatestNews::manage_news" title="Manage News"
module="News_LatestNews" sortOrder="2" parent="News_LatestNews::main_menu"
action="simplenews/news/index" resource="News_LatestNews::manage_news" />
<add id="News_LatestNews::configuration" title="Configurations"
module="News_LatestNews" sortOrder="3" parent="News_LatestNews::main_menu"
action="adminhtml/system_config/edit/section/simplenews"
resource="News_LatestNews::configuration" />
</menu>
</config>


NewsLatestNewsetcadminhtmlroutes.xml



<?xml version="1.0"?>

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../lib/internal/Magento/Framework/App/etc/routes.xsd">
<router id="admin">
<route id="simplenews" frontName="simplenews">
<!-- <module name="Tutorial_SimpleNews" /> -->
<module name="News_LatestNews" />
</route>
</router>
</config>


NewsLatestNewsetcacl.xml



<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Acl/etc/acl.xsd">
<acl>
<resources>
<resource id="Magento_Backend::admin">
<resource id="News_LatestNews::simplenews" title="Simple News"
sortOrder="100">
<resource id="News_LatestNews::add_news" title="Add News"
sortOrder="1" />
<resource id="News_LatestNews::manage_news" title="Manage News"
sortOrder="2" />
<resource id="News_LatestNews::configuration" title="Configurations"
sortOrder="3" />
</resource>

<resource id="Magento_Backend::stores">
<resource id="Magento_Backend::stores_settings">
<resource id="Magento_Config::config">
<resource id="News_LatestNews::config" title="News Configuration" sortOrder="50" />
</resource>
</resource>
</resource>
</resource>
</resources>
</acl>
</config>


NewsLatestNewsetcmodule.xml



<?xml version="1.0"?>

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="News_LatestNews" setup_version="1.0.2" active="true">
</module>
</config>


Edit:



1 exception(s):
Exception #0 (InvalidArgumentException): Boolean value is expected, supported values: array (
0 => true,
1 => 1,
2 => 'true',
3 => '1',
4 => false,
5 => 0,
6 => 'false',
7 => '0',
)









share|improve this question
























  • php bin/magento setup:di:compile run & check

    – Ankit Shah
    Feb 17 '17 at 6:01











  • delete vargeneration folder and check.

    – Anand Ontigeri
    Feb 17 '17 at 6:05













0












0








0








I created a custom menu but got this error.




Fatal error: Class NewsLatestNewsControllerAdminhtmlNews contains
1 abstract method and must therefore be declared abstract or implement
the remaining methods (MagentoFrameworkAppActionInterface::execute)
in
C:xampphtdocsmagento3appcodeNewsLatestNewsControllerAdminhtmlNews.php
on line 12




these are the codes



NewsLatestNewsControllerAdminhtmlNews.php



<?php 
namespace NewsLatestNewsControllerAdminhtml;

use MagentoBackendAppAction;
use MagentoBackendAppActionContext;
use MagentoFrameworkRegistry;
use MagentoFrameworkViewResultPageFactory;
use NewsLatestNewsModelNewsFactory;

abstract class News extends Action

/**
* Core registry
*
* @var MagentoFrameworkRegistry
*/
protected $_coreRegistry;

/**
* Result page factory
*
* @var MagentoFrameworkViewResultPageFactory
*/
protected $_resultPageFactory;

/**
* News model factory
*
* @var NewsLatestNewsModelNewsFactory
*/
protected $_newsFactory;

/**
* @param Context $context
* @param Registry $coreRegistry
* @param PageFactory $resultPageFactory
* @param NewsFactory $newsFactory
*/
public function __construct(Context $context,
Registry $coreRegistry,
PageFactory $resultPageFactory,
NewsFactory $newsFactory
)
parent::__construct($context);
$this->_coreRegistry = $coreRegistry;
$this->_resultPageFactory = $resultPageFactory;
$this->_newsFactory = $newsFactory;


/**
* News access rights checking
*
* @return bool
*/
protected function _isAllowed()

return $this->_authorization->isAllowed('News_LatestNews::manage_news');




NewsLatestNewsControllerAdminhtmlNewsIndex.php



<?php

namespace NewsLatestNewsControllerAdminhtmlNews;

use NewsLatestNewsControllerAdminhtmlNews;

class Index extends News

/**
* @return void
*/
public function execute()

if ($this->getRequest()->getQuery('ajax'))
$this->_forward('grid');
return;


/** @var MagentoBackendModelViewResultPage $resultPage */
$resultPage = $this->_resultPageFactory->create();
$resultPage->setActiveMenu('News_LatestNews::main_menu');
$resultPage->getConfig()->getTitle()->prepend(__('Simple News'));

return $resultPage;




NewsLatestNewsBlockAdminhtmlNewsNews.php



<?php

namespace NewsLatestNewsBlockAdminhtml;

use MagentoBackendBlockWidgetGridContainer;

class News extends Container

/**
* Constructor
*
* @return void
*/
protected function _construct()

$this->_controller = 'adminhtml_news';
$this->_blockGroup = 'News_LatestNews';
$this->_headerText = __('Manage News');
$this->_addButtonLabel = __('Add News');
parent::_construct();




NewsLatestNewsetcadminhtmlmenu.xml



<?xml version="1.0"?>

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../Backend/etc/menu.xsd">
<menu>
<add id="News_LatestNews::main_menu" title="Simple News"
module="News_LatestNews" sortOrder="20"
resource="News_LatestNews::simplenews" />
<add id="News_LatestNews::add_news" title="Add News"
module="News_LatestNews" sortOrder="1" parent="News_LatestNews::main_menu"
action="simplenews/news/new" resource="News_LatestNews::manage_news" />
<add id="News_LatestNews::manage_news" title="Manage News"
module="News_LatestNews" sortOrder="2" parent="News_LatestNews::main_menu"
action="simplenews/news/index" resource="News_LatestNews::manage_news" />
<add id="News_LatestNews::configuration" title="Configurations"
module="News_LatestNews" sortOrder="3" parent="News_LatestNews::main_menu"
action="adminhtml/system_config/edit/section/simplenews"
resource="News_LatestNews::configuration" />
</menu>
</config>


NewsLatestNewsetcadminhtmlroutes.xml



<?xml version="1.0"?>

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../lib/internal/Magento/Framework/App/etc/routes.xsd">
<router id="admin">
<route id="simplenews" frontName="simplenews">
<!-- <module name="Tutorial_SimpleNews" /> -->
<module name="News_LatestNews" />
</route>
</router>
</config>


NewsLatestNewsetcacl.xml



<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Acl/etc/acl.xsd">
<acl>
<resources>
<resource id="Magento_Backend::admin">
<resource id="News_LatestNews::simplenews" title="Simple News"
sortOrder="100">
<resource id="News_LatestNews::add_news" title="Add News"
sortOrder="1" />
<resource id="News_LatestNews::manage_news" title="Manage News"
sortOrder="2" />
<resource id="News_LatestNews::configuration" title="Configurations"
sortOrder="3" />
</resource>

<resource id="Magento_Backend::stores">
<resource id="Magento_Backend::stores_settings">
<resource id="Magento_Config::config">
<resource id="News_LatestNews::config" title="News Configuration" sortOrder="50" />
</resource>
</resource>
</resource>
</resource>
</resources>
</acl>
</config>


NewsLatestNewsetcmodule.xml



<?xml version="1.0"?>

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="News_LatestNews" setup_version="1.0.2" active="true">
</module>
</config>


Edit:



1 exception(s):
Exception #0 (InvalidArgumentException): Boolean value is expected, supported values: array (
0 => true,
1 => 1,
2 => 'true',
3 => '1',
4 => false,
5 => 0,
6 => 'false',
7 => '0',
)









share|improve this question
















I created a custom menu but got this error.




Fatal error: Class NewsLatestNewsControllerAdminhtmlNews contains
1 abstract method and must therefore be declared abstract or implement
the remaining methods (MagentoFrameworkAppActionInterface::execute)
in
C:xampphtdocsmagento3appcodeNewsLatestNewsControllerAdminhtmlNews.php
on line 12




these are the codes



NewsLatestNewsControllerAdminhtmlNews.php



<?php 
namespace NewsLatestNewsControllerAdminhtml;

use MagentoBackendAppAction;
use MagentoBackendAppActionContext;
use MagentoFrameworkRegistry;
use MagentoFrameworkViewResultPageFactory;
use NewsLatestNewsModelNewsFactory;

abstract class News extends Action

/**
* Core registry
*
* @var MagentoFrameworkRegistry
*/
protected $_coreRegistry;

/**
* Result page factory
*
* @var MagentoFrameworkViewResultPageFactory
*/
protected $_resultPageFactory;

/**
* News model factory
*
* @var NewsLatestNewsModelNewsFactory
*/
protected $_newsFactory;

/**
* @param Context $context
* @param Registry $coreRegistry
* @param PageFactory $resultPageFactory
* @param NewsFactory $newsFactory
*/
public function __construct(Context $context,
Registry $coreRegistry,
PageFactory $resultPageFactory,
NewsFactory $newsFactory
)
parent::__construct($context);
$this->_coreRegistry = $coreRegistry;
$this->_resultPageFactory = $resultPageFactory;
$this->_newsFactory = $newsFactory;


/**
* News access rights checking
*
* @return bool
*/
protected function _isAllowed()

return $this->_authorization->isAllowed('News_LatestNews::manage_news');




NewsLatestNewsControllerAdminhtmlNewsIndex.php



<?php

namespace NewsLatestNewsControllerAdminhtmlNews;

use NewsLatestNewsControllerAdminhtmlNews;

class Index extends News

/**
* @return void
*/
public function execute()

if ($this->getRequest()->getQuery('ajax'))
$this->_forward('grid');
return;


/** @var MagentoBackendModelViewResultPage $resultPage */
$resultPage = $this->_resultPageFactory->create();
$resultPage->setActiveMenu('News_LatestNews::main_menu');
$resultPage->getConfig()->getTitle()->prepend(__('Simple News'));

return $resultPage;




NewsLatestNewsBlockAdminhtmlNewsNews.php



<?php

namespace NewsLatestNewsBlockAdminhtml;

use MagentoBackendBlockWidgetGridContainer;

class News extends Container

/**
* Constructor
*
* @return void
*/
protected function _construct()

$this->_controller = 'adminhtml_news';
$this->_blockGroup = 'News_LatestNews';
$this->_headerText = __('Manage News');
$this->_addButtonLabel = __('Add News');
parent::_construct();




NewsLatestNewsetcadminhtmlmenu.xml



<?xml version="1.0"?>

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../Backend/etc/menu.xsd">
<menu>
<add id="News_LatestNews::main_menu" title="Simple News"
module="News_LatestNews" sortOrder="20"
resource="News_LatestNews::simplenews" />
<add id="News_LatestNews::add_news" title="Add News"
module="News_LatestNews" sortOrder="1" parent="News_LatestNews::main_menu"
action="simplenews/news/new" resource="News_LatestNews::manage_news" />
<add id="News_LatestNews::manage_news" title="Manage News"
module="News_LatestNews" sortOrder="2" parent="News_LatestNews::main_menu"
action="simplenews/news/index" resource="News_LatestNews::manage_news" />
<add id="News_LatestNews::configuration" title="Configurations"
module="News_LatestNews" sortOrder="3" parent="News_LatestNews::main_menu"
action="adminhtml/system_config/edit/section/simplenews"
resource="News_LatestNews::configuration" />
</menu>
</config>


NewsLatestNewsetcadminhtmlroutes.xml



<?xml version="1.0"?>

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../lib/internal/Magento/Framework/App/etc/routes.xsd">
<router id="admin">
<route id="simplenews" frontName="simplenews">
<!-- <module name="Tutorial_SimpleNews" /> -->
<module name="News_LatestNews" />
</route>
</router>
</config>


NewsLatestNewsetcacl.xml



<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Acl/etc/acl.xsd">
<acl>
<resources>
<resource id="Magento_Backend::admin">
<resource id="News_LatestNews::simplenews" title="Simple News"
sortOrder="100">
<resource id="News_LatestNews::add_news" title="Add News"
sortOrder="1" />
<resource id="News_LatestNews::manage_news" title="Manage News"
sortOrder="2" />
<resource id="News_LatestNews::configuration" title="Configurations"
sortOrder="3" />
</resource>

<resource id="Magento_Backend::stores">
<resource id="Magento_Backend::stores_settings">
<resource id="Magento_Config::config">
<resource id="News_LatestNews::config" title="News Configuration" sortOrder="50" />
</resource>
</resource>
</resource>
</resource>
</resources>
</acl>
</config>


NewsLatestNewsetcmodule.xml



<?xml version="1.0"?>

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="News_LatestNews" setup_version="1.0.2" active="true">
</module>
</config>


Edit:



1 exception(s):
Exception #0 (InvalidArgumentException): Boolean value is expected, supported values: array (
0 => true,
1 => 1,
2 => 'true',
3 => '1',
4 => false,
5 => 0,
6 => 'false',
7 => '0',
)






magento2 adminhtml






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 18 mins ago









Muhammad Anas

6521320




6521320










asked Feb 17 '17 at 6:00









enjamesenjames

154




154












  • php bin/magento setup:di:compile run & check

    – Ankit Shah
    Feb 17 '17 at 6:01











  • delete vargeneration folder and check.

    – Anand Ontigeri
    Feb 17 '17 at 6:05

















  • php bin/magento setup:di:compile run & check

    – Ankit Shah
    Feb 17 '17 at 6:01











  • delete vargeneration folder and check.

    – Anand Ontigeri
    Feb 17 '17 at 6:05
















php bin/magento setup:di:compile run & check

– Ankit Shah
Feb 17 '17 at 6:01





php bin/magento setup:di:compile run & check

– Ankit Shah
Feb 17 '17 at 6:01













delete vargeneration folder and check.

– Anand Ontigeri
Feb 17 '17 at 6:05





delete vargeneration folder and check.

– Anand Ontigeri
Feb 17 '17 at 6:05










1 Answer
1






active

oldest

votes


















3














The error is self-explained. NewsLatestNewsControllerAdminhtmlNews extends from abstract class MagentoBackendAppAction which implements MagentoFrameworkAppActionInterface::execute(). So, in your custom controller class need to have execute() method.



Or, NewsLatestNewsControllerAdminhtmlNews is an abstract class.






share|improve this answer

























  • in NewsLatestNewsControllerAdminhtmlNewsIndex.php there is an execute method which is extended in NewsLatestNewsControllerAdminhtmlNews , is it wrong?

    – enjames
    Feb 17 '17 at 7:00












  • @enjames NewsLatestNewsControllerAdminhtmlNews should be an abstract class. So, you don't need to declare the execute method in this class. Your index controller will extend from it and declare execute method .

    – Khoa TruongDinh
    Feb 17 '17 at 7:15











  • O got a new error 1 exception(s): Exception #0 (InvalidArgumentException): Boolean value is expected, supported values: array ( 0 => true, 1 => 1, 2 => 'true', 3 => '1', 4 => false, 5 => 0, 6 => 'false', 7 => '0', ) Exception #0 (InvalidArgumentException): Boolean value is expected, supported values: array ( 0 => true, 1 => 1, 2 => 'true', 3 => '1', 4 => false, 5 => 0, 6 => 'false', 7 => '0', ) i just add abstract abstract class News extends Action,

    – enjames
    Feb 17 '17 at 8:27











  • @enjames you can update your question with the new code lines?

    – Khoa TruongDinh
    Feb 17 '17 at 8:39











  • You tried to var_dump() what? You tried to use var_dump and then show the new error?

    – Khoa TruongDinh
    Feb 17 '17 at 9:03











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
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f160407%2ferror-in-custom-admin-menu-controller-magento-2%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









3














The error is self-explained. NewsLatestNewsControllerAdminhtmlNews extends from abstract class MagentoBackendAppAction which implements MagentoFrameworkAppActionInterface::execute(). So, in your custom controller class need to have execute() method.



Or, NewsLatestNewsControllerAdminhtmlNews is an abstract class.






share|improve this answer

























  • in NewsLatestNewsControllerAdminhtmlNewsIndex.php there is an execute method which is extended in NewsLatestNewsControllerAdminhtmlNews , is it wrong?

    – enjames
    Feb 17 '17 at 7:00












  • @enjames NewsLatestNewsControllerAdminhtmlNews should be an abstract class. So, you don't need to declare the execute method in this class. Your index controller will extend from it and declare execute method .

    – Khoa TruongDinh
    Feb 17 '17 at 7:15











  • O got a new error 1 exception(s): Exception #0 (InvalidArgumentException): Boolean value is expected, supported values: array ( 0 => true, 1 => 1, 2 => 'true', 3 => '1', 4 => false, 5 => 0, 6 => 'false', 7 => '0', ) Exception #0 (InvalidArgumentException): Boolean value is expected, supported values: array ( 0 => true, 1 => 1, 2 => 'true', 3 => '1', 4 => false, 5 => 0, 6 => 'false', 7 => '0', ) i just add abstract abstract class News extends Action,

    – enjames
    Feb 17 '17 at 8:27











  • @enjames you can update your question with the new code lines?

    – Khoa TruongDinh
    Feb 17 '17 at 8:39











  • You tried to var_dump() what? You tried to use var_dump and then show the new error?

    – Khoa TruongDinh
    Feb 17 '17 at 9:03















3














The error is self-explained. NewsLatestNewsControllerAdminhtmlNews extends from abstract class MagentoBackendAppAction which implements MagentoFrameworkAppActionInterface::execute(). So, in your custom controller class need to have execute() method.



Or, NewsLatestNewsControllerAdminhtmlNews is an abstract class.






share|improve this answer

























  • in NewsLatestNewsControllerAdminhtmlNewsIndex.php there is an execute method which is extended in NewsLatestNewsControllerAdminhtmlNews , is it wrong?

    – enjames
    Feb 17 '17 at 7:00












  • @enjames NewsLatestNewsControllerAdminhtmlNews should be an abstract class. So, you don't need to declare the execute method in this class. Your index controller will extend from it and declare execute method .

    – Khoa TruongDinh
    Feb 17 '17 at 7:15











  • O got a new error 1 exception(s): Exception #0 (InvalidArgumentException): Boolean value is expected, supported values: array ( 0 => true, 1 => 1, 2 => 'true', 3 => '1', 4 => false, 5 => 0, 6 => 'false', 7 => '0', ) Exception #0 (InvalidArgumentException): Boolean value is expected, supported values: array ( 0 => true, 1 => 1, 2 => 'true', 3 => '1', 4 => false, 5 => 0, 6 => 'false', 7 => '0', ) i just add abstract abstract class News extends Action,

    – enjames
    Feb 17 '17 at 8:27











  • @enjames you can update your question with the new code lines?

    – Khoa TruongDinh
    Feb 17 '17 at 8:39











  • You tried to var_dump() what? You tried to use var_dump and then show the new error?

    – Khoa TruongDinh
    Feb 17 '17 at 9:03













3












3








3







The error is self-explained. NewsLatestNewsControllerAdminhtmlNews extends from abstract class MagentoBackendAppAction which implements MagentoFrameworkAppActionInterface::execute(). So, in your custom controller class need to have execute() method.



Or, NewsLatestNewsControllerAdminhtmlNews is an abstract class.






share|improve this answer















The error is self-explained. NewsLatestNewsControllerAdminhtmlNews extends from abstract class MagentoBackendAppAction which implements MagentoFrameworkAppActionInterface::execute(). So, in your custom controller class need to have execute() method.



Or, NewsLatestNewsControllerAdminhtmlNews is an abstract class.







share|improve this answer














share|improve this answer



share|improve this answer








edited Feb 17 '17 at 6:20

























answered Feb 17 '17 at 6:11









Khoa TruongDinhKhoa TruongDinh

22.2k64187




22.2k64187












  • in NewsLatestNewsControllerAdminhtmlNewsIndex.php there is an execute method which is extended in NewsLatestNewsControllerAdminhtmlNews , is it wrong?

    – enjames
    Feb 17 '17 at 7:00












  • @enjames NewsLatestNewsControllerAdminhtmlNews should be an abstract class. So, you don't need to declare the execute method in this class. Your index controller will extend from it and declare execute method .

    – Khoa TruongDinh
    Feb 17 '17 at 7:15











  • O got a new error 1 exception(s): Exception #0 (InvalidArgumentException): Boolean value is expected, supported values: array ( 0 => true, 1 => 1, 2 => 'true', 3 => '1', 4 => false, 5 => 0, 6 => 'false', 7 => '0', ) Exception #0 (InvalidArgumentException): Boolean value is expected, supported values: array ( 0 => true, 1 => 1, 2 => 'true', 3 => '1', 4 => false, 5 => 0, 6 => 'false', 7 => '0', ) i just add abstract abstract class News extends Action,

    – enjames
    Feb 17 '17 at 8:27











  • @enjames you can update your question with the new code lines?

    – Khoa TruongDinh
    Feb 17 '17 at 8:39











  • You tried to var_dump() what? You tried to use var_dump and then show the new error?

    – Khoa TruongDinh
    Feb 17 '17 at 9:03

















  • in NewsLatestNewsControllerAdminhtmlNewsIndex.php there is an execute method which is extended in NewsLatestNewsControllerAdminhtmlNews , is it wrong?

    – enjames
    Feb 17 '17 at 7:00












  • @enjames NewsLatestNewsControllerAdminhtmlNews should be an abstract class. So, you don't need to declare the execute method in this class. Your index controller will extend from it and declare execute method .

    – Khoa TruongDinh
    Feb 17 '17 at 7:15











  • O got a new error 1 exception(s): Exception #0 (InvalidArgumentException): Boolean value is expected, supported values: array ( 0 => true, 1 => 1, 2 => 'true', 3 => '1', 4 => false, 5 => 0, 6 => 'false', 7 => '0', ) Exception #0 (InvalidArgumentException): Boolean value is expected, supported values: array ( 0 => true, 1 => 1, 2 => 'true', 3 => '1', 4 => false, 5 => 0, 6 => 'false', 7 => '0', ) i just add abstract abstract class News extends Action,

    – enjames
    Feb 17 '17 at 8:27











  • @enjames you can update your question with the new code lines?

    – Khoa TruongDinh
    Feb 17 '17 at 8:39











  • You tried to var_dump() what? You tried to use var_dump and then show the new error?

    – Khoa TruongDinh
    Feb 17 '17 at 9:03
















in NewsLatestNewsControllerAdminhtmlNewsIndex.php there is an execute method which is extended in NewsLatestNewsControllerAdminhtmlNews , is it wrong?

– enjames
Feb 17 '17 at 7:00






in NewsLatestNewsControllerAdminhtmlNewsIndex.php there is an execute method which is extended in NewsLatestNewsControllerAdminhtmlNews , is it wrong?

– enjames
Feb 17 '17 at 7:00














@enjames NewsLatestNewsControllerAdminhtmlNews should be an abstract class. So, you don't need to declare the execute method in this class. Your index controller will extend from it and declare execute method .

– Khoa TruongDinh
Feb 17 '17 at 7:15





@enjames NewsLatestNewsControllerAdminhtmlNews should be an abstract class. So, you don't need to declare the execute method in this class. Your index controller will extend from it and declare execute method .

– Khoa TruongDinh
Feb 17 '17 at 7:15













O got a new error 1 exception(s): Exception #0 (InvalidArgumentException): Boolean value is expected, supported values: array ( 0 => true, 1 => 1, 2 => 'true', 3 => '1', 4 => false, 5 => 0, 6 => 'false', 7 => '0', ) Exception #0 (InvalidArgumentException): Boolean value is expected, supported values: array ( 0 => true, 1 => 1, 2 => 'true', 3 => '1', 4 => false, 5 => 0, 6 => 'false', 7 => '0', ) i just add abstract abstract class News extends Action,

– enjames
Feb 17 '17 at 8:27





O got a new error 1 exception(s): Exception #0 (InvalidArgumentException): Boolean value is expected, supported values: array ( 0 => true, 1 => 1, 2 => 'true', 3 => '1', 4 => false, 5 => 0, 6 => 'false', 7 => '0', ) Exception #0 (InvalidArgumentException): Boolean value is expected, supported values: array ( 0 => true, 1 => 1, 2 => 'true', 3 => '1', 4 => false, 5 => 0, 6 => 'false', 7 => '0', ) i just add abstract abstract class News extends Action,

– enjames
Feb 17 '17 at 8:27













@enjames you can update your question with the new code lines?

– Khoa TruongDinh
Feb 17 '17 at 8:39





@enjames you can update your question with the new code lines?

– Khoa TruongDinh
Feb 17 '17 at 8:39













You tried to var_dump() what? You tried to use var_dump and then show the new error?

– Khoa TruongDinh
Feb 17 '17 at 9:03





You tried to var_dump() what? You tried to use var_dump and then show the new error?

– Khoa TruongDinh
Feb 17 '17 at 9:03

















draft saved

draft discarded
















































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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f160407%2ferror-in-custom-admin-menu-controller-magento-2%23new-answer', 'question_page');

);

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







Popular posts from this blog

Magento 2 duplicate PHPSESSID cookie when using session_start() in custom php scriptMagento 2: User cant logged in into to account page, no error showing!Magento duplicate on subdomainGrabbing storeview from cookie (after using language selector)How do I run php custom script on magento2Magento 2: Include PHP script in headerSession lock after using Cm_RedisSessionscript php to update stockMagento set cookie popupMagento 2 session id cookie - where to find it?How to import Configurable product from csv with custom attributes using php scriptMagento 2 run custom PHP script

Can not update quote_id field of “quote_item” table magento 2Magento 2.1 - We can't remove the item. (Shopping Cart doesnt allow us to remove items before becomes empty)Add value for custom quote item attribute using REST apiREST API endpoint v1/carts/cartId/items always returns error messageCorrect way to save entries to databaseHow to remove all associated quote objects of a customer completelyMagento 2 - Save value from custom input field to quote_itemGet quote_item data using quote id and product id filter in Magento 2How to set additional data to quote_item table from controller in Magento 2?What is the purpose of additional_data column in quote_item table in magento2Set Custom Price to Quote item magento2 from controller

How to solve knockout JS error in Magento 2 Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?(Magento2) knockout.js:3012 Uncaught ReferenceError: Unable to process bindingUnable to process binding Knockout.js magento 2Cannot read property `scopeLabel` of undefined on Product Detail PageCan't get Customer Data on frontend in Magento 2Magento2 Order Summary - unable to process bindingKO templates are not loading in Magento 2.1 applicationgetting knockout js error magento 2Product grid not load -— Unable to process binding Knockout.js magento 2Product form not loaded in magento2Uncaught ReferenceError: Unable to process binding “if: function()return (isShowLegend()) ” magento 2