Skip to content
Extraits de code Groupes Projets
Valider 83d03789 rédigé par Thomas Steur's avatar Thomas Steur
Parcourir les fichiers

we need to leave the controller code there for backwards compatibility. Many...

we need to leave the controller code there for backwards compatibility. Many people might link directly to this url in their widgets. Will have a look at this later again
parent 0a2d41fa
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -46,4 +46,115 @@ class Controller extends \Piwik\Plugin\Controller ...@@ -46,4 +46,115 @@ class Controller extends \Piwik\Plugin\Controller
return $view->render(); return $view->render();
} }
public function indexPageUrls()
{
return View::singleReport(
Piwik::translate('General_Pages'),
$this->getPageUrls(true));
}
public function indexEntryPageUrls()
{
return View::singleReport(
Piwik::translate('Actions_SubmenuPagesEntry'),
$this->getEntryPageUrls(true));
}
public function indexExitPageUrls()
{
return View::singleReport(
Piwik::translate('Actions_SubmenuPagesExit'),
$this->getExitPageUrls(true));
}
public function indexPageTitles()
{
return View::singleReport(
Piwik::translate('Actions_SubmenuPageTitles'),
$this->getPageTitles(true));
}
public function indexDownloads()
{
return View::singleReport(
Piwik::translate('General_Downloads'),
$this->getDownloads(true));
}
public function indexOutlinks()
{
return View::singleReport(
Piwik::translate('General_Outlinks'),
$this->getOutlinks(true));
}
//
// Actions that render individual reports
//
public function getPageUrls()
{
return $this->renderReport(__FUNCTION__);
}
public function getEntryPageUrls()
{
return $this->renderReport(__FUNCTION__);
}
public function getExitPageUrls()
{
return $this->renderReport(__FUNCTION__);
}
public function getSiteSearchKeywords()
{
return $this->renderReport(__FUNCTION__);
}
public function getSiteSearchNoResultKeywords()
{
return $this->renderReport(__FUNCTION__);
}
public function getSiteSearchCategories()
{
return $this->renderReport(__FUNCTION__);
}
public function getPageUrlsFollowingSiteSearch()
{
return $this->renderReport(__FUNCTION__);
}
public function getPageTitlesFollowingSiteSearch()
{
return $this->renderReport(__FUNCTION__);
}
public function getPageTitles()
{
return $this->renderReport(__FUNCTION__);
}
public function getEntryPageTitles()
{
return $this->renderReport(__FUNCTION__);
}
public function getExitPageTitles()
{
return $this->renderReport(__FUNCTION__);
}
public function getDownloads()
{
return $this->renderReport(__FUNCTION__);
}
public function getOutlinks()
{
return $this->renderReport(__FUNCTION__);
}
} }
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter