diff --git a/core/FrontController.php b/core/FrontController.php
index 4b5ee6f20bc402418b7652c201a0b77a0bb830f9..ce39922a2ee3b08f98d158caa2ed689df55c750b 100644
--- a/core/FrontController.php
+++ b/core/FrontController.php
@@ -57,6 +57,7 @@ use Piwik\Plugins\CoreHome\Controller as CoreHomeController;
 class FrontController extends Singleton
 {
     const DEFAULT_MODULE = 'CoreHome';
+
     /**
      * Set to false and the Front Controller will not dispatch the request
      *
@@ -153,7 +154,8 @@ class FrontController extends Singleton
             return array(new CoreHomeController(), 'renderReportWidget');
         }
 
-        if (!empty($action) && 'menu' === substr($action, 0, 4)) {
+        if (!empty($action) && Report::PREFIX_ACTION_IN_MENU === substr($action, 0, strlen(Report
+            ::PREFIX_ACTION_IN_MENU))) {
             $reportAction = lcfirst(substr($action, 4)); // menuGetPageUrls => getPageUrls
             $report       = Report::factory($module, $reportAction);
 
diff --git a/core/Plugin/Report.php b/core/Plugin/Report.php
index 9037ce664c027a62bfb3ad45d61270147c4f2f35..c30e731d4627a205024b8416e868431cb1a1ac2c 100644
--- a/core/Plugin/Report.php
+++ b/core/Plugin/Report.php
@@ -41,6 +41,12 @@ class Report
      */
     const COMPONENT_SUBNAMESPACE = 'Reports';
 
+    /**
+     * When added to the menu, a given report eg 'getCampaigns'
+     * will be routed as &action=menuGetCampaigns
+     */
+    const PREFIX_ACTION_IN_MENU = 'menu';
+
     /**
      * The name of the module which is supposed to be equal to the name of the plugin. The module is detected
      * automatically.
@@ -711,7 +717,7 @@ class Report
 
     private function getMenuControllerAction()
     {
-        return 'menu' . ucfirst($this->action);
+        return self::PREFIX_ACTION_IN_MENU . ucfirst($this->action);
     }
 
     private function getSubtableApiMethod()
diff --git a/plugins/Contents/Controller.php b/plugins/Contents/Controller.php
index daf319bb535a683791f2977b059a1746aeba959c..5785ba478c5d81e6ae147cd398d8b40fcb20118d 100644
--- a/plugins/Contents/Controller.php
+++ b/plugins/Contents/Controller.php
@@ -27,7 +27,7 @@ class Controller extends \Piwik\Plugin\Controller
             $reportsView->addReport(
                 $report->getCategory(),
                 $report->getName(),
-                'Contents.menu' . ucfirst($report->getAction())
+                'Contents.' . Report::PREFIX_ACTION_IN_MENU . ucfirst($report->getAction())
             );
         }