--- a/busui/owa/modules/base/reportReferralLinkTextDetail.php +++ b/busui/owa/modules/base/reportReferralLinkTextDetail.php @@ -1,1 +1,52 @@ - + + * @copyright Copyright © 2006 Peter Adams + * @license http://www.gnu.org/copyleft/gpl.html GPL v2.0 + * @category owa + * @package owa + * @version $Revision$ + * @since owa 1.0.0 + */ + +class owa_reportReferralLinkTextDetailController extends owa_reportController { + + function action() { + + $linkText = $this->getParam('referralLinkText'); + + $this->setView('base.report'); + $this->setSubview('base.reportDimensionDetail'); + $this->setTitle('Referral Link Text: ', $linkText); + $this->set('metrics', 'visits,pageViews,bounces'); + $this->set('dimensions', 'referralLinkText'); + $this->set('sort', 'visits'); + $this->set('resultsPerPage', 30); + $this->set('constraints', 'referralLinkText=='.urlencode($linkText)); + $this->set('trendChartMetric', 'visits'); + $this->set('trendTitle', 'There were <*= this.d.resultSet.aggregates.visits.formatted_value *> visits from links with this text.'); + } +} + +?>