add piwik installation
This commit is contained in:
parent
90aa4ef157
commit
8c5d4f0c31
3197 changed files with 563902 additions and 0 deletions
102
www/analytics/core/Period/Week.php
Normal file
102
www/analytics/core/Period/Week.php
Normal file
|
|
@ -0,0 +1,102 @@
|
|||
<?php
|
||||
/**
|
||||
* Piwik - Open source web analytics
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
||||
*
|
||||
*/
|
||||
namespace Piwik\Period;
|
||||
|
||||
|
||||
use Piwik\Period;
|
||||
use Piwik\Piwik;
|
||||
|
||||
/**
|
||||
*/
|
||||
class Week extends Period
|
||||
{
|
||||
protected $label = 'week';
|
||||
|
||||
/**
|
||||
* Returns the current period as a localized short string
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getLocalizedShortString()
|
||||
{
|
||||
//"30 Dec - 6 Jan 09"
|
||||
$dateStart = $this->getDateStart();
|
||||
$dateEnd = $this->getDateEnd();
|
||||
|
||||
$string = Piwik::translate('CoreHome_ShortWeekFormat');
|
||||
$string = self::getTranslatedRange($string, $dateStart, $dateEnd);
|
||||
return $string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the current period as a localized long string
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getLocalizedLongString()
|
||||
{
|
||||
$format = Piwik::translate('CoreHome_LongWeekFormat');
|
||||
$string = self::getTranslatedRange($format, $this->getDateStart(), $this->getDateEnd());
|
||||
return Piwik::translate('CoreHome_PeriodWeek') . " " . $string;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $format
|
||||
* @param \Piwik\Date $dateStart
|
||||
* @param \Piwik\Date $dateEnd
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
static protected function getTranslatedRange($format, $dateStart, $dateEnd)
|
||||
{
|
||||
$string = str_replace('From%', '%', $format);
|
||||
$string = $dateStart->getLocalized($string);
|
||||
$string = str_replace('To%', '%', $string);
|
||||
$string = $dateEnd->getLocalized($string);
|
||||
return $string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the current period as a string
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getPrettyString()
|
||||
{
|
||||
$out = Piwik::translate('General_DateRangeFromTo',
|
||||
array($this->getDateStart()->toString(),
|
||||
$this->getDateEnd()->toString())
|
||||
);
|
||||
return $out;
|
||||
}
|
||||
|
||||
/**
|
||||
* Generates the subperiods - one for each day in the week
|
||||
*/
|
||||
protected function generate()
|
||||
{
|
||||
if ($this->subperiodsProcessed) {
|
||||
return;
|
||||
}
|
||||
parent::generate();
|
||||
$date = $this->date;
|
||||
|
||||
if ($date->toString('N') > 1) {
|
||||
$date = $date->subDay($date->toString('N') - 1);
|
||||
}
|
||||
|
||||
$startWeek = $date;
|
||||
|
||||
$currentDay = clone $startWeek;
|
||||
while ($currentDay->compareWeek($startWeek) == 0) {
|
||||
$this->addSubperiod(new Day($currentDay));
|
||||
$currentDay = $currentDay->addDay(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue