Code Search for Developers
 
 
  

link.php from Group-Office groupware at Krugle


Show link.php syntax highlighted

<?php
/**
 * @copyright Intermesh 2003
 * @author Merijn Schering <mschering@intermesh.nl>
 * @version $Revision: 1.3 $ $Date: 2006/05/31 09:32:49 $

 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation; either version 2 of the License, or (at your
 * option) any later version.
 */

require_once("../../Group-Office.php");

unset($_SESSION['GO_HANDLER']);
session_unregister('GO_HANDLER');

$charset = isset($charset) ? $charset : 'UTF-8';
header('Content-Type: text/html; charset='.$charset);


$values = isset($_POST['global_select_table']['selected']) ? $_POST['global_select_table']['selected'] : array();

$link_type=smart_stripslashes($_REQUEST['link_type']);
$link_id=smart_stripslashes($_REQUEST['link_id']);
$opener_action=smart_stripslashes($_REQUEST['opener_action']);


require_once($GO_CONFIG->class_path.'/base/search.class.inc');
$search = new search();

foreach($values as $selected_link_id)
{
	$search_result = $search->get_search_result($GO_SECURITY->user_id, $selected_link_id);
	
	$GO_LINKS->add_link($search_result['link_id'], $search_result['link_type'], $link_id, $link_type);
}


?>
<html>
<body onload="javascript:<?php if(!empty($opener_action)) echo base64_decode($opener_action); ?>window.close();">
</body>
</html>




See more files for this project here

Group-Office groupware

Group-Office is a powerfull modular Internet/Intranet application framework. It features calendaring, project management, e-mail, tasks, addressbook, file management.

Project homepage: http://sourceforge.net/projects/group-office
Programming language(s): JavaScript,Pascal,PHP
License: other

  add.php
  global_select.php
  link.php
  select.php
  select_link.php