0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
b2evolution
/
2.4.1-2
/
standard
/
htdocs
/
inc
/
items
/
model
/
[
Home
]
File: _link.class.php
<?php /** * This file implements the Link class, which manages extra links on items. * * This file is part of the evoCore framework - {@link http://evocore.net/} * See also {@link http://sourceforge.net/projects/evocms/}. * * @copyright (c)2003-2008 by Francois PLANQUE - {@link http://fplanque.net/} * * {@internal License choice * - If you have received this file as part of a package, please find the license.txt file in * the same folder or the closest folder above for complete license terms. * - If you have received this file individually (e-g: from http://evocms.cvs.sourceforge.net/) * then you must choose one of the following licenses before using the file: * - GNU General Public License 2 (GPL) - http://www.opensource.org/licenses/gpl-license.php * - Mozilla Public License 1.1 (MPL) - http://www.opensource.org/licenses/mozilla1.1.php * }} * * {@internal Open Source relicensing agreement: * }} * * @package evocore * * {@internal Below is a list of authors who have contributed to design/coding of this file: }} * @author fplanque: Francois PLANQUE. * * @version $Id: _link.class.php,v 1.3 2008/01/21 09:35:31 fplanque Exp $ */ if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' ); load_class('_core/model/dataobjects/_dataobject.class.php'); /** * Item Link * * @package evocore */ class Link extends DataObject { var $ltype_ID = 0; var $Item; var $File; /** * Constructor * * @param table Database row */ function Link( $db_row = NULL ) { // Call parent constructor: parent::DataObject( 'T_links', 'link_', 'link_ID', 'datecreated', 'datemodified', 'creator_user_ID', 'lastedit_user_ID' ); if( $db_row != NULL ) { $this->ID = $db_row->link_ID; $this->ltype_ID = $db_row->link_ltype_ID; // source of link: $ItemCache = & get_Cache( 'ItemCache' ); $this->Item = & $ItemCache->get_by_ID( $db_row->link_itm_ID ); $FileCache = & get_Cache( 'FileCache' ); // fp> do not halt on error. For some reason (ahem bug) a file can disappear and if we fail here then we won't be // able to delete the link $this->File = & $FileCache->get_by_ID( $db_row->link_file_ID, false, false ); } else { // New object: } } /** * Return type of target for this Link: * * @todo incomplete */ function target_type() { if( !is_null($this->File) ) { return 'file'; } return 'unkown'; } } ?>