Piwik\Plugins\WebsiteMeasurable\Settings\Urls::checkAtLeastOneUrl PHP Method

checkAtLeastOneUrl() public method

Checks that the array has at least one element
public checkAtLeastOneUrl ( array $urls )
$urls array
    public function checkAtLeastOneUrl($urls)
    {
        $urls = $this->cleanParameterUrls($urls);
        if (!is_array($urls) || count($urls) == 0) {
            throw new Exception(Piwik::translate('SitesManager_ExceptionNoUrl'));
        }
    }