Piwik\ProfessionalServices\Advertising::areAdsForProfessionalServicesEnabled PHP Method

areAdsForProfessionalServicesEnabled() public method

Returns true if it is ok to show some advertising in the Piwik UI.
    public function areAdsForProfessionalServicesEnabled()
    {
        return $this->isAdsEnabledInConfig($this->config->General);
    }

Usage Example

コード例 #1
0
ファイル: AdvertisingTest.php プロジェクト: diosmosis/piwik
 public function test_areAdsForProfessionalServicesEnabled_UsingPreviousSettingName()
 {
     $this->config->General = array('piwik_pro_ads_enabled' => '1');
     $enabled = $this->advertising->areAdsForProfessionalServicesEnabled();
     $this->assertTrue($enabled);
 }
All Usage Examples Of Piwik\ProfessionalServices\Advertising::areAdsForProfessionalServicesEnabled