| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | public function forTemplate() |
||
| 36 | { |
||
| 37 | if (!$this->isEnabled()) { |
||
| 38 | return null; |
||
| 39 | } |
||
| 40 | |||
| 41 | $parts = str_split(Environment::getEnv('CRAZY_EGG_ACCOUNT_NUMBER'), 4); |
||
| 42 | $accountNumber = $parts[0] . '/' . $parts[1]; |
||
| 43 | |||
| 44 | return $this->renderWith( |
||
| 45 | 'CrazyEggScriptTags', |
||
| 46 | [ |
||
| 47 | 'CrazyEggAccountNumber' => $accountNumber, |
||
| 48 | ] |
||
| 52 |