Documentation
includeNavigation
usage
Sushee_Shell->includeNavigation( boolean include_navigation)
parameters
include_navigation : whether to include the results of the execution of navigation.xml
examples
include_once('../sushee/common.php');
$shell = new Sushee_Shell();
$shell->includeNavigation(false);
$shell->addCommand(
'<GET>
<CONTACT ID="1857"/>
</GET>'
);
$shell->execute();
$firstname = $shell->valueOf('/RESPONSE/RESULTS/CONTACT/INFO/FIRSTNAME');