當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Tracker::_raiseError方法代碼示例

本文整理匯總了PHP中Tracker::_raiseError方法的典型用法代碼示例。如果您正苦於以下問題:PHP Tracker::_raiseError方法的具體用法?PHP Tracker::_raiseError怎麽用?PHP Tracker::_raiseError使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Tracker的用法示例。


在下文中一共展示了Tracker::_raiseError方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: setPath

 /**
  * @param string $path
  */
 public function setPath($path)
 {
     if ($path && $path[0] != '/') {
         Tracker::_raiseError('The page path should always start with a slash ("/").', __METHOD__);
     }
     $this->path = $path;
 }
開發者ID:msports,項目名稱:mmwebfonts,代碼行數:10,代碼來源:Page.php

示例2: __construct

 /**
  * @param array $properties
  */
 public function __construct(array $properties = array())
 {
     foreach ($properties as $property => $value) {
         // PHP doesn't care about case in method names
         $setterMethod = 'set' . $property;
         if (method_exists($this, $setterMethod)) {
             $this->{$setterMethod}($value);
         } else {
             return Tracker::_raiseError('There is no setting "' . $property . '".', __METHOD__);
         }
     }
 }
開發者ID:msports,項目名稱:mmwebfonts,代碼行數:15,代碼來源:Config.php

示例3: validate

 public function validate()
 {
     if ($this->network === null || $this->action === null) {
         Tracker::_raiseError('Social interactions need to have at least the "network" and "action" attributes defined.', __METHOD__);
     }
 }
開發者ID:sspaeti,項目名稱:ImpressPages,代碼行數:6,代碼來源:SocialInteraction.php

示例4: setLoadTime

 /**
  * @param int $loadTime
  */
 public function setLoadTime($loadTime)
 {
     if ((int) $loadTime != (double) $loadTime) {
         return Tracker::_raiseError('Page load time must be specified in integer milliseconds.', __METHOD__);
     }
     $this->loadTime = (int) $loadTime;
 }
開發者ID:sspaeti,項目名稱:ImpressPages,代碼行數:10,代碼來源:Page.php

示例5: validate

 public function validate()
 {
     if ($this->sku === null) {
         Tracker::_raiseError('Items need to have a sku/product code defined.', __METHOD__);
     }
 }
開發者ID:xamiro-dev,項目名稱:xamiro,代碼行數:6,代碼來源:Item.php

示例6: setSitespeedSampleRate

 /**
  * @param int $sitespeedSampleRate
  */
 public function setSitespeedSampleRate($sitespeedSampleRate)
 {
     if ((int) $sitespeedSampleRate != (double) $sitespeedSampleRate || $sitespeedSampleRate < 0 || $sitespeedSampleRate > 100) {
         return Tracker::_raiseError('For consistency with ga.js, sample rates must be specified as a number between 0 and 100.', __METHOD__);
     }
     $this->sitespeedSampleRate = (int) $sitespeedSampleRate;
 }
開發者ID:ralfhartmann,項目名稱:isotope_core,代碼行數:10,代碼來源:Config.php

示例7: validate

 public function validate()
 {
     if ($this->category === null || $this->action === null) {
         Tracker::_raiseError('Events need at least to have a category and action defined.', __METHOD__);
     }
 }
開發者ID:ralfhartmann,項目名稱:isotope_core,代碼行數:6,代碼來源:Event.php

示例8: validate

 public function validate()
 {
     if (!$this->items) {
         Tracker::_raiseError('Transactions need to consist of at least one item.', __METHOD__);
     }
 }
開發者ID:ralfhartmann,項目名稱:isotope_core,代碼行數:6,代碼來源:Transaction.php


注:本文中的Tracker::_raiseError方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。