getAllMeasurableSettings() public method

public getAllMeasurableSettings ( integer $idSite, string | null $idMeasurableType = null ) : MeasurableSettings[]
$idSite integer The ID of a site. If a site is about to be created pass idSite = 0.
$idMeasurableType string | null If null, idType will be detected automatically if the site already exists. Only needed to set a value when idSite = 0 (this is the case when a site is about) to be created.
return Piwik\Settings\Measurable\MeasurableSettings[]
示例#1
0
文件: API.php 项目: piwik/piwik
 /**
  * Returns all available measurable types.
  * Marked as deprecated so it won't appear in API page. It won't be a public API for now.
  * @deprecated
  * @return array
  */
 public function getAvailableMeasurableTypes()
 {
     Piwik::checkUserHasSomeViewAccess();
     $typeManager = new TypeManager();
     $types = $typeManager->getAllTypes();
     $available = array();
     foreach ($types as $type) {
         $measurableSettings = $this->settingsProvider->getAllMeasurableSettings($idSite = 0, $type->getId());
         $settingsMetadata = new SettingsMetadata();
         $available[] = array('id' => $type->getId(), 'name' => Piwik::translate($type->getName()), 'description' => Piwik::translate($type->getDescription()), 'howToSetupUrl' => $type->getHowToSetupUrl(), 'settings' => $settingsMetadata->formatSettings($measurableSettings));
     }
     return $available;
 }
示例#2
0
文件: API.php 项目: piwik/piwik
 private function setAndValidateMeasurableSettings($idSite, $idType, $settingValues)
 {
     $measurableSettings = $this->settingsProvider->getAllMeasurableSettings($idSite, $idType);
     $this->settingsMetadata->setPluginSettings($measurableSettings, $settingValues);
     return $measurableSettings;
 }