* @copyright 2008-2013 Alexander Schneider * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 * @version SVN: $Id$ * @link http://wordpress.org/extend/plugins/user-access-manager/ */ if (!function_exists('walkPath')) { /** * Retruns the html code for the recursive access. * * @param mixed $oObject The object. * @param string $sObjectType The type of the object. * * @return string */ function walkPath($oObject, $sObjectType) { $sOut = $oObject->name; if (isset($oObject->recursiveMember[$sObjectType])) { $sOut .= ''; } return $sOut; } } ?>