function purl_inited in Persistent URL 6
Same name and namespace in other branches
- 7 purl.module \purl_inited()
Static cache that determines whether the PURL path init has been called.
2 calls to purl_inited()
- purl_init in ./purl.module 
- Implementation of hook_init() Checks for any valid persistent urls in request string and fire callback appropriately
- purl_url_inbound_alter in ./purl.module 
- Implementation of hook_url_alter_inbound(). Rewrites an incoming drupal path (&$result) removing PURL modifiers.
File
- ./purl.module, line 166 
Code
function purl_inited($set = NULL) {
  static $status = FALSE;
  if (isset($set)) {
    $status = $set;
  }
  return $status;
}