Skip to content
This repository was archived by the owner on Feb 17, 2022. It is now read-only.

Commit cf3fa8a

Browse files
author
Robert Kummer
committed
refs #28
* README updated for new feature
1 parent 9188e9c commit cf3fa8a

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -345,3 +345,33 @@ Removing of a campaign is also possible.
345345
public function unsetCampaign();
346346

347347
Available since 1.2.0.
348+
349+
### Analytics::enableScriptBlock()
350+
351+
Context: Controller, Action code
352+
353+
Enabling the rendering of the `<script>...</script>` block tags. Is enabled by default, so you do not have to call this.
354+
355+
/**
356+
* render script block
357+
*
358+
* @return GoogleAnalytics
359+
*/
360+
public function enableScriptBlock();
361+
362+
Available since 1.2.1.
363+
364+
### Analytics::disableScriptBlock()
365+
366+
Context: Controller, Action code
367+
368+
Disabling the rendering of the `<script>...</script>` block tags.
369+
370+
/**
371+
* do not render script block
372+
*
373+
* @return GoogleAnalytics
374+
*/
375+
public function disableScriptBlock();
376+
377+
Available since 1.2.1.

0 commit comments

Comments
 (0)