Files
laipower/wp-content/plugins/wp-piwik/classes/WP_Piwik/Widget/Keywords.php

21 lines
599 B
PHP

<?php
namespace WP_Piwik\Widget;
class Keywords extends \WP_Piwik\Widget {
public $class_name = __CLASS__;
protected function configure( $prefix = '', $params = array() ) {
$time_settings = $this->get_time_settings();
$this->parameter = array(
'idSite' => self::$wp_piwik->get_piwik_site_id( $this->blog_id ),
'period' => $time_settings['period'],
'date' => $time_settings['date'],
);
$this->title = $prefix . __( 'Keywords', 'wp-piwik' ) . ' (' . $time_settings['description'] . ')';
$this->method = 'Referrers.getKeywords';
$this->name = 'Keyword';
}
}