| Conditions | 2 |
| Paths | 2 |
| Total Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function configMapping() |
||
| 21 | { |
||
| 22 | $oUrl = \RainLoop\Plugins\Property::NewInstance('piwik_url')->SetLabel('Piwik URL') |
||
| 23 | ->SetAllowedInJs(true); |
||
| 24 | |||
| 25 | $oSiteID = \RainLoop\Plugins\Property::NewInstance('site_id')->SetLabel('Site ID') |
||
| 26 | ->SetAllowedInJs(true); |
||
| 27 | |||
| 28 | if (\method_exists($oUrl, 'SetPlaceholder')) |
||
| 29 | { |
||
| 30 | $oUrl->SetPlaceholder('http://'); |
||
| 31 | $oSiteID->SetPlaceholder(''); |
||
| 32 | } |
||
| 33 | |||
| 34 | return array($oUrl, $oSiteID); |
||
| 35 | } |
||
| 36 | } |
||
| 37 |