* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License * @package api * @subpackage link * @version $Id$ */ /** * Generalized linking between entries of eGroupware apps - BO layer * * @deprecated use egw_link class with it's static methods instead */ class bolink extends egw_link { /** * @deprecated use egw_link::VFS_APPNAME */ var $vfs_appname = egw_link::VFS_APPNAME; /** * @deprecated use solink::TABLE */ var $link_table = solink::TABLE; /** * Overwrite private constructor of egw_links, to allow (depricated) instancated usage * */ function __construct() { error_log('Call to depricated bolink class from '.function_backtrace(1)); } }