'This Plugin extracts and displays SEO metrics: Alexa web ranking, Google Pagerank, number of Indexed pages and backlinks of the currently selected website.', 'authors' => array(array('name' => 'Piwik', 'homepage' => 'http://piwik.org/')), 'version' => Version::VERSION, 'license' => 'GPL v3+', 'license_homepage' => 'http://www.gnu.org/licenses/gpl.html' ); } /** * @see Piwik\Plugin::getListHooksRegistered */ public function getListHooksRegistered() { $hooks = array('WidgetsList.addWidgets' => 'addWidgets'); return $hooks; } function addWidgets() { WidgetsList::add('SEO', 'SEO_SeoRankings', 'SEO', 'getRank'); } }