Atomik Event Browser

Atomik::url()

Atomik::Url

Fired after a url has been computed

  1. string $action

    The action for which the url has been computed

  2. string &$url

    The computed url

  3. array $args

    All arguments passed to the function except the first one

function myAtomikUrlHandler($action, &$url, $args)
{
    // your code
}

Atomik::listenEvent('Atomik::Url', 'myAtomikUrlHandler');