<?php
/* $Id: lib_stream_text.inc,v 1.3 2007/10/04 07:01:13 ravids Exp $ */
/**
*
* Streaming Help Library
*
* PHP version 4 and 5
*
* LICENSE: This source file is subject to LGPL license
* that is available through the world-wide-web at the following URI:
* http://www.gnu.org/copyleft/lesser.html
*
* @package framework
* @subpackage stream_text
* @author Janaka Wickramasinghe <hide@address.com>
* @copyright Lanka Software Foundation - http://www.opensource.lk
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL)
*
*/
function shn_stream_init()
{
//for install hack
$my_approot = realpath(dirname(__FILE__)).'/../';
if(!file_exists($my_approot.'conf/sysconf.inc')){
session_start();
}
//install hack ends
}
function shn_text_check_perms(){
return ALLOWED;//skip authentication at this step since , authentication is performed at the last step. i.e at method
// invocation level. otherwise cannot let WSDL be visible to any one and still protect the methods.
}
function shn_stream_close()
{
}
?>