'This Plugin extracts and displays SEO metrics: Alexa web ranking, Google Pagerank, number of Indexed pages and backlinks of the currently selected website.', 'author' => 'Piwik', 'author_homepage' => 'http://piwik.org/', 'version' => Piwik_Version::VERSION, ); } /** * @see Piwik_Plugin::getListHooksRegistered */ public function getListHooksRegistered() { $hooks = array('WidgetsList.add' => 'addWidgets'); return $hooks; } function addWidgets() { Piwik_AddWidget('SEO', 'SEO_SeoRankings', 'SEO', 'getRank'); } }