Quick search:

PntMarkedItemsCollector
PntPagerButtonsListBuilder
PntSessionBasedScout
PntShortLink
PntTreeViewNode
__construct
getContextHref
getContextIds
getFootprint
getFootprintHref
getFootprintUri
getFootprintUris
getReferrerId
getRequestUrl
getRootUrl
moved
sessionVar

<?php
/* Copyright (c) MetaClass, 2003-2013

Distrubuted and licensed under under the terms of the GNU Affero General Public License
version 3, or (at your option) any later version.

This program is distributed WITHOUT ANY WARRANTY; without even the implied warranty 
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
	
See the License, http://www.gnu.org/licenses/agpl.txt */

/**
* See what is context scouting, http://www.phppeanuts.org/site/index_php/Pagina/180/context+scouting.html
* 
* To keep track of the movements through the pages of the applications, 
* the SessionBasedScout stores footpints in the session. 
* However, its interface has been designed to allow the replacement by
* for example a database based scout that supports longer and persistent 
* footprint history. 

* Footprints exist of an uri for each footprint id, and another map
* of context ids (upward references) for each footprint id.
* Because from one page several pages be opened in a new window or tab, the scout
* stores any move so that it can become a context later on.
* @package pnt/web/helpers
*/
class PntSessionBasedScout { //implements ScoutInterface
	public $site;
	public $baseUrl;
	public $footprintsLimit;
	public $footprintUris;
	public $contextIds;
Copyright (c) MetaClass, 2003-

This code is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This code is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.

Click here for a copy of the license or see http://www.gnu.org/licenses/ .