Skip to content

Commit

Permalink
add doco to owa_caller
Browse files Browse the repository at this point in the history
  • Loading branch information
padams committed Dec 18, 2010
1 parent fc63fbc commit f9698f2
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion owa_caller.php
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,21 @@ function handleRequestFromUrl() {
return $this->handleRequest();

}



/**
* Returns a configured javascript tracker for inclusion in your web page.
* You can pass an options array to control what the tracker will log.
* The options array is a key/value pair format like:
*
* $options = array('do_not_log_pageview' => true);
*
* Option keys include: 'do_not_log_pageviews', 'do_not_log_clicks', 'do_not_log_domstream'
*
* @param $echo bool if true the function will echo. if false the tracker is returned asa string.
* @param $options array an key value pair option array
* @return $tag string the tracker javascript.
*/
function placeHelperPageTags($echo = true, $options = array()) {

if(!owa_coreAPI::getRequestParam('is_robot')) {
Expand Down

0 comments on commit f9698f2

Please sign in to comment.