API16

JBrowser/isRobot

From Joomla! Documentation

< API16:JBrowser

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Determines if the browser is a robot or not.


<! removed transcluded page call, red link never existed >

Syntax[edit]

isRobot()


Returns[edit]

boolean True if browser is a known robot.

Defined in[edit]

libraries/joomla/environment/browser.php

Importing[edit]

jimport( 'joomla.environment.browser' );

Source Body[edit]

public function isRobot()
{
        foreach ($this->_robots as $robot) {
                if (strpos($this->_agent, $robot) !== false) {
                        return true;
                }
        }
        return false;
}


<! removed transcluded page call, red link never existed >

Examples[edit]

Code Examples[edit]