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?

Most bit efficient text communication method?

What does "lightly crushed" mean for cardamon pods?

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

Can a new player join a group only when a new campaign starts?

How to react to hostile behavior from a senior developer?

How do I find out the mythology and history of my Fortress?

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

Generate an RGB colour grid

Is there a kind of relay only consumes power when switching?

What does the "x" in "x86" represent?

Is it a good idea to use CNN to classify 1D signal?

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. (

What's the meaning of "fortified infraction restraint"?

How do I make this wiring inside cabinet safer? (Pic)

What is the meaning of the simile “quick as silk”?

When the Haste spell ends on a creature, do attackers have advantage against that creature?

Maximum summed powersets with non-adjacent items

What is homebrew?

Fantasy story; one type of magic grows in power with use, but the more powerful they are, they more they are drawn to travel to their source

Why are the trig functions versine, haversine, exsecant, etc, rarely used in modern mathematics?

Do square wave exist?

Is it cost-effective to upgrade an old-ish Giant Escape R3 commuter bike with entry-level branded parts (wheels, drivetrain)?

Is it common practice to audition new musicians one-on-one before rehearsing with the entire band?

What is the longest distance a player character can jump in one leap?



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 13 mins ago









Muhammad Anas

6481320




6481320










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 - Add success message with knockout 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?Success / Error message on ajax request$.widget is not a function when loading a homepage after add custom jQuery on custom themeHow can bind jQuery to current document in Magento 2 When template load by ajaxRedirect page using plugin in Magento 2Magento 2 - Update quantity and totals of cart page without page reload?Magento 2: Quote data not loaded on knockout checkoutMagento 2 : I need to change add to cart success message after adding product into cart through pluginMagento 2.2.5 How to add additional products to cart from new checkout step?Magento 2 Add error/success message with knockoutCan't validate Post Code on checkout page

Fil:Tokke komm.svg

Where did Arya get these scars? Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara Favourite questions and answers from the 1st quarter of 2019Why did Arya refuse to end it?Has the pronunciation of Arya Stark's name changed?Has Arya forgiven people?Why did Arya Stark lose her vision?Why can Arya still use the faces?Has the Narrow Sea become narrower?Does Arya Stark know how to make poisons outside of the House of Black and White?Why did Nymeria leave Arya?Why did Arya not kill the Lannister soldiers she encountered in the Riverlands?What is the current canonical age of Sansa, Bran and Arya Stark?