Code Search for Developers
 
 
  

linkfunctions.php from pointcarre at Krugle


Show linkfunctions.php syntax highlighted

<?php // $Id: linkfunctions.php 135 2005-08-01 11:08:26Z roane $
/*
==============================================================================
	Dokeos - elearning and course management software

	Copyright (c) 2004 Dokeos S.A.
	Copyright (c) 2003 Ghent University (UGent)
	Copyright (c) 2001 Universite catholique de Louvain (UCL)

	For a full list of contributors, see "credits.txt".
	The full license can be read in "license.txt".

	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.

	See the GNU General Public License for more details.

	Contact: Dokeos, 181 rue Royale, B-1000 Brussels, Belgium, info@dokeos.com
==============================================================================
*/
/**
==============================================================================
* Function library for the links tool.
*
* This is a complete remake of the original link tool.
* New features:
* - Organize links into categories;
* - favorites/bookmarks interface;
* - move links up/down within a category;
* - move categories up/down;
* - expand/collapse all categories;
* - add link to 'root' category => category-less link is always visible.
*
*	@author Patrick Cool, complete remake (December 2003 - January 2004)
*	@author Rene Haentjens, CSV file import (October 2004)
*	@package dokeos.link
==============================================================================
*/

/*
==============================================================================
		FUNCTIONS
==============================================================================
*/

/**
* Used to add a link or a category
* @param string $type, "link" or "category"
* @todo replace strings by constants
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
*/
function addlinkcategory($type)
{
	global $catlinkstatus;
	global $msgErr;

	$ok=true;

	if($type == "link")
	{
		global $tbl_link;

		$title=$_POST['title'];
		$urllink=$_POST['urllink'];
		$description=$_POST['description'];
		$selectcategory=$_POST['selectcategory'];
		$onhomepage=$_POST['onhomepage'];

		$urllink=trim($urllink);
		$title=trim($title);
		$description=trim($description);

		// if title is empty, an error occurs
		if(empty($urllink))
		{
			$msgErr=get_lang('GiveURL');

			$ok=false;
		}
		// if the title is empty, we use the url as the title
		else
		{
			if(empty($title))
			{
				$title=$urllink;
			}

			// we check weither the $url starts with http://, if not we add this
			if(!strstr($urllink,'://'))
			{
				$urllink="http://".$urllink;
			}

			// looking for the largest order number for this category
			$result=api_sql_query("SELECT MAX(display_order) FROM  `".$tbl_link."` WHERE category_id='".$_POST['selectcategory']."'");

			list($orderMax)=mysql_fetch_row($result);

			$order=$orderMax+1;

			$sql="INSERT INTO `".$tbl_link."` (url, title, description, category_id,display_order, on_homepage) VALUES ('$urllink','$title','$description','$selectcategory','$order', '$onhomepage')";
			$catlinkstatus=get_lang('LinkAdded');
			api_sql_query($sql,__FILE__,__LINE__);
			unset($urllink,$title,$description,$selectcategory);
		}
	}
	elseif($type == "category")
	{
		global $tbl_categories;

		$category_title=trim($_POST['category_title']);
		$description=trim($_POST['description']);

		if(empty($category_title))
		{
			$msgErr=get_lang('GiveCategoryName');

			$ok=false;
		}
		else
		{
			// looking for the largest order number for this category
			$result = api_sql_query("SELECT MAX(display_order) FROM  `".$tbl_categories."`");

			list($orderMax) = mysql_fetch_row($result);

			$order=$orderMax+1;

			$sql="INSERT INTO `".$tbl_categories."` (category_title, description, display_order) VALUES ('$category_title','$description', '$order')";
			api_sql_query($sql,__FILE__,__LINE__);
			
			$catlinkstatus=get_lang('CategoryAdded');

			unset($category_title,$description);
		}
	}

	

	// "WHAT'S NEW" notification : update last tool Edit
	if($type == "link")
	{
		global $_uid;
		global $_course;
		global $nameTools;

		//update_last_tooledit($_course, $nameTools, mysql_insert_id(), get_lang('new_link'), $_uid);
		item_property_update($_course, TOOL_LINK, mysql_insert_id(), "LinkAdded", $_uid);
	}

	return $ok;
}
// End of the function addlinkcategory


/**
* Used to delete a link or a category
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
*/
function deletelinkcategory($type)
{
	global $tbl_categories;
	global $tbl_link;
	global $catlinkstatus;
	global $_course;
	global $_uid;

	$TABLE_ITEM_PROPERTY = Database::get_course_table(LAST_TOOL_EDIT_TABLE);

	if ($type=="link")
	{
		global $id;
		// -> items are no longer fysically deleted, but the visibility is set to 2 (in item_property). This will
		// make a restore function possible for the platform administrator
		//$sql="DELETE FROM `".$tbl_link."` WHERE id='".$_GET['id']."'";
		item_property_update($_course, TOOL_LINK, $id, "delete", $_uid);
		$catlinkstatus=get_lang("LinkDeleted");
		unset($id);
	}
	if ($type=="category")
	{
		global $id;

		// first we delete the category itself and afterwards all the links of this category.
		$sql="DELETE FROM `".$tbl_categories."` WHERE id='".$_GET['id']."'";
		api_sql_query($sql,__FILE__,__LINE__);
		$sql="DELETE FROM `".$tbl_link."` WHERE category_id='".$_GET['id']."'";
		$catlinkstatus=get_lang('CategoryDeleted');
		unset($id);
		api_sql_query($sql,__FILE__,__LINE__);
	}
}










/**
* Used to edit a link or a category
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
*/
function editlinkcategory($type)
{
global $tbl_categories;
global $tbl_link;
global $catlinkstatus;
global $id;
global $submitLink;
global $submitCategory;

if ($type=="link")
	{
	global $urllink;
	global $title;
	global $description;
	global $category;
	global $onhomepage;

	// this is used to populate the link-form with the info found in the database
	if (!$_POST['submitLink'])
		{
		$sql="SELECT * FROM `".$tbl_link."` WHERE id='".$_GET['id']."'";
		$result=api_sql_query($sql,__FILE__,__LINE__);
		if ($myrow=mysql_fetch_array($result))
			{
			$urllink         = $myrow["url"];
			$title       = $myrow["title"];
			$description = $myrow["description"];
			$category = $myrow["category_id"];
			if ($myrow["on_homepage"]<>0)
				{$onhomepage="checked";}
			}
		}
	// this is used to put the modified info of the link-form into the database
	if ($_POST['submitLink'])
		{
		global $selectcategory;

		$sql="UPDATE `".$tbl_link."` set url='".$_POST['urllink']."', title='".$_POST['title']."', description='".$_POST['description']."', category_id='".$_POST['selectcategory']."', on_homepage='".$_POST['onhomepage']."' WHERE id='".$_POST['id']."'";
		api_sql_query($sql,__FILE__,__LINE__);
		$catlinkstatus=get_lang('LinkModded');

		// "WHAT'S NEW" notification: update table last_toolEdit
		global $_uid;
		global $_course;
		global $nameTools;

		//update_last_tooledit($_course, $nameTools, $_POST['id'], get_lang('update_link'), $_uid);
		item_property_update($_course, TOOL_LINK, $_POST['id'], "LinkUpdated", $_uid);
		}
	}
if ($type=="category")
	{
	global $description;
	global $category_title;

	// this is used to populate the category-form with the info found in the database
	if (!$submitCategory)
		{
		$sql="SELECT * FROM `".$tbl_categories."` WHERE id='".$_GET['id']."'";
		$result=api_sql_query($sql,__FILE__,__LINE__);
		if ($myrow=mysql_fetch_array($result))
			{
			$category_title= $myrow["category_title"];
			$description = $myrow["description"];
			}
		}
	// this is used to put the modified info of the category-form into the database
	if ($submitCategory)
		{
		$sql="UPDATE `".$tbl_categories."` set category_title='".$_POST['category_title']."', description='".$_POST['description']."' WHERE id='".$_POST['id']."'";
		api_sql_query($sql,__FILE__,__LINE__);
		$catlinkstatus=get_lang('CategoryModded');
		}
	}
}
// END of function editlinkcat







/**
* creates a correct $view for in the URL
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
*/
function makedefaultviewcode($locatie)
{
	global $aantalcategories;
	global $view;

	for($j = 0; $j <= $aantalcategories-1; $j++)
	{
		$view[$j]=0;
	}
	$view[intval($locatie)]="1";
}
// END of function makedefaultviewcode



/**
* changes the visibility of a link
* @todo add the changing of the visibility of a course
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
*/
function change_visibility($id,$scope)
{
	global $_course;
	global $_uid;
	$TABLE_ITEM_PROPERTY = Database::get_course_table(LAST_TOOL_EDIT_TABLE);

	if ($scope=="link")
	{
		$sqlselect="SELECT * FROM $TABLE_ITEM_PROPERTY WHERE tool='".TOOL_LINK."' and ref='".$id."'";
		$result=api_sql_query($sqlselect);
		$row=mysql_fetch_array($result);
		if ($row['visibility']=='1')
		{
			item_property_update($_course, TOOL_LINK, $id, "invisible", $_uid);
		}
		if ($row['visibility']=='0')
		{
			item_property_update($_course, TOOL_LINK, $id, "visible", $_uid);
		}
	}
}




/**
* displays all the links of a given category.
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
*/
function showlinksofcategory($catid)
{
	global $tbl_link;
	global $is_allowedToEdit;
	global $urlview;
	global $up;
	global $down;
	
	//$target_mode = "\" target=\"_blank\""; //default Dokeos: open new window
	$target_mode = "\" target=\"_top\""; //Pointcarré: do not open new window
	
	$TABLE_ITEM_PROPERTY = Database::get_course_table(LAST_TOOL_EDIT_TABLE);
	
	$sqlLinks = "SELECT * FROM `".$tbl_link."` link, ".$TABLE_ITEM_PROPERTY." itemproperties WHERE itemproperties.tool='".TOOL_LINK."' AND link.id=itemproperties.ref AND  link.category_id='".$catid."' AND (itemproperties.visibility='0' OR itemproperties.visibility='1')ORDER BY link.display_order DESC";
	$result = api_sql_query($sqlLinks);
	$numberoflinks=mysql_num_rows($result);
	echo "<table border=\"0\">";
	$i=1;
	while ($myrow = mysql_fetch_array($result))
		{
		$myrow[3] = api_parse_tex($myrow[3]);
		if ($myrow['visibility']=='1')
		{
			echo	"<tr>",
				"<td align=\"right\" valign=\"top\" width=\"40\">",
				"<img src=\"../../claroline/img/pixel.gif\" border=\"0\" width=\"10\">",
				"<a href=\"link_goto.php?link_id=",$myrow[0],"&link_url=",urlencode($myrow[1]), $target_mode, ">",
				"<img src=\"../../claroline/img/liens.png\" border=\"0\" alt=\"".get_lang('Links')."\">",
				"</td>",
	
				"<td width=\"580\" valign=\"top\">",
							"<a href=\"link_goto.php?link_id=",$myrow[0],"&link_url=",urlencode($myrow[1]),"\"", $target_mode, ">",htmlentities($myrow[2]),"</a>\n",
				"<br>",$myrow[3],"";
		}
		else
		{
			if ($is_allowedToEdit)
			{
				echo	"<tr>",
				"<td align=\"right\" valign=\"top\" width=\"40\">",
				"<img src=\"../../claroline/img/pixel.gif\" border=\"0\" width=\"10\">",
				"<a href=\"link_goto.php?link_id=",$myrow[0],"&link_url=",urlencode($myrow[1]),$target_mode, " class=\"invisible\">",
				"<img src=\"../../claroline/img/liens.png\" border=\"0\" alt=\"".get_lang('Links')."\">",
				"</td>",
	
				"<td width=\"580\" valign=\"top\">",
							"<a href=\"link_goto.php?link_id=",$myrow[0],"&link_url=",urlencode($myrow[1]),"\"", $target_mode, " class=\"invisible\">",htmlentities($myrow[2]),"</a>\n",
				"<br>",$myrow[3],"";
			}
		}
		if ($is_allowedToEdit)
			{
			echo	"<br>",
					"<a href=\"".$_SERVER['PHP_SELF']."?action=editlink&category=$category&id=$myrow[0]&urlview=$urlview\">",
					"<img src=\"../img/edit.gif\" border=\"0\" alt=\"",get_lang('Modify'),"\">",
					"</a>",
	
					" <a href=\"".$_SERVER['PHP_SELF']."?action=deletelink&id=",$myrow[0],"&urlview=",$urlview,"\" onclick=\"javascript:if(!confirm('".get_lang('LinkDelconfirm')."')) return false;\">",
					"<img src=\"../img/delete.gif\" border=\"0\" alt=\"",get_lang('Delete'),"\">",
					"</a>";
			// DISPLAY MOVE UP COMMAND only if it is not the top link
			if ($i!=1)
				{
				echo	"<a href=\"".$_SERVER['PHP_SELF']."?urlview=".$urlview."&up=",$myrow["id"],"\">",
						"<img src=../img/up.gif border=0 alt=\"Up\">",
						"</a>\n";
				}
			// DISPLAY MOVE DOWN COMMAND only if it is not the bottom link
			if($i < $numberoflinks)
				{
					echo	"<a href=\"".$_SERVER['PHP_SELF']."?urlview=".$urlview."&down=".$myrow["id"]."\">",
							"<img src=\"../img/down.gif\" border=\"0\" alt=\"Down\">",
							"</a>\n";
				}
			if ($myrow['visibility']=="1")
			{
				echo "<a href=\"link.php?action=visibility&id=".$myrow['id']."&scope=link\"><img src=\"../img/visible.gif\"></a>";
			}
			if ($myrow['visibility']=="0")
			{
				echo "<a href=\"link.php?action=visibility&id=".$myrow['id']."&scope=link\"><img src=\"../img/invisible.gif\"></a>";
			}
	
			}
		echo	"</td>",
				"</tr>";
		$i++;
		}
	echo "</table>";
}


/**
* displays the edit, delete and move icons
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
*/
function showcategoryadmintools($categoryid)
{
global $urlview;
global $aantalcategories;
global $catcounter;

echo	"<a href=\"".$_SERVER['PHP_SELF']."?action=editcategory&id=$categoryid&urlview=$urlview\">",
		"<img src=\"../img/edit.gif\" border=\"0\" alt=\"",get_lang('Modify'),"\">",
		"</a> \n";
echo 	"<a href=\"".$_SERVER['PHP_SELF']."?action=deletecategory&id=",$categoryid,"&urlview=$urlview\" onclick=\"javascript:if(!confirm('".get_lang('CategoryDelconfirm')."')) return false;\">",
		"<img src=\"../img/delete.gif\" border=\"0\" alt=\"",get_lang('Delete'),"\">",
		"</a>";
// DISPLAY MOVE UP COMMAND only if it is not the top link
if ($catcounter!=1)
	{
	echo	"<a href=\"".$_SERVER['PHP_SELF']."?catmove=true&up=",$categoryid,"&urlview=$urlview\">",
			"<img src=../img/up.gif border=0 alt=\"Up\">",
			"</a>\n";
	}
// DISPLAY MOVE DOWN COMMAND only if it is not the bottom link
if($catcounter < $aantalcategories)
	{
	echo	"<a href=\"".$_SERVER['PHP_SELF']."?catmove=true&down=".$categoryid."&urlview=$urlview\">",
			"<img src=\"../img/down.gif\" border=\"0\" alt=\"Down\">",
			"</a>\n";
	}
$catcounter++;
}


/**
* move a link or a linkcategory up or down
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
*/
function movecatlink($catlinkid)
{
global $catmove;
global $up;
global $down;
global $tbl_link;
global $tbl_categories;

if ($_GET['down'])
	{
	$thiscatlinkId = $_GET['down'];
	$sortDirection = "DESC";
	}
if ($_GET['up'])
	{
	$thiscatlinkId = $_GET['up'];
	$sortDirection = "ASC";
	}


// We check if it is a category we are moving or a link. If it is a category, a querystring catmove = true is present in the url
if ($catmove=="true")
	{
	$movetable=$tbl_categories;
	$catid=$catlinkid;
	}
else
	{
	$movetable=$tbl_link;
	//getting the category of the link
	$sql="SELECT category_id from `".$movetable."` WHERE id='$thiscatlinkId'";
	$result=api_sql_query($sql,__FILE__,__LINE__);
	$catid=mysql_fetch_array($result);
	}


// this code is copied and modified from announcements.php
if ($sortDirection)
	{
	if (!in_array(trim(strtoupper($sortDirection)), array('ASC', 'DESC'))) die("Bad sort direction used."); //sanity check of sortDirection var
	if ($catmove=="true")
		{
		$sqlcatlinks="SELECT id, display_order FROM `".$movetable."` ORDER BY display_order $sortDirection";
		}
	else
		{
		$sqlcatlinks="SELECT id, display_order FROM `".$movetable."` WHERE category_id='".$catid[0]."' ORDER BY display_order $sortDirection";
		}
	$linkresult = api_sql_query($sqlcatlinks);
	while ($sortrow=mysql_fetch_array($linkresult))
		{
		// STEP 2 : FOUND THE NEXT ANNOUNCEMENT ID AND ORDER, COMMIT SWAP
		// This part seems unlogic, but it isn't . We first look for the current link with the querystring ID
		// and we know the next iteration of the while loop is the next one. These should be swapped.
		if (isset($thislinkFound) && $thislinkFound == true)
			{
			$nextlinkId=$sortrow["id"];
			$nextlinkOrdre=$sortrow["display_order"];

			api_sql_query("UPDATE `".$movetable."`
			             SET display_order = '$nextlinkOrdre'
			             WHERE id =  '$thiscatlinkId'");

			api_sql_query("UPDATE `".$movetable."`
			             SET display_order = '$thislinkOrdre'
						 WHERE id =  '$nextlinkId'");

			break;
			}

		if ($sortrow["id"]==$thiscatlinkId )
			{
			$thislinkOrdre=$sortrow["display_order"];
			$thislinkFound = true;
			}
		}
	}
}


/**
* CSV file import functions
* @author Ren�Haentjens , Ghent University
*/
function get_cat($catname)  // get category id (existing or make new)
{
    global $tbl_categories;

    $result = api_sql_query("SELECT `id` FROM `" . $tbl_categories .
        "` WHERE `category_title`='". addslashes($catname) . "'", __FILE__, __LINE__);

    if (mysql_num_rows($result) >= 1 && ($row = mysql_fetch_array($result)))
        return $row['id'];  // several categories with same name: take first

	$result = api_sql_query("SELECT MAX(display_order) FROM `" . $tbl_categories .
	    "`", __FILE__, __LINE__); list($max_order) = mysql_fetch_row($result);

	api_sql_query("INSERT INTO `" . $tbl_categories .
	    "` (category_title, description, display_order) VALUES ('" .
	    addslashes($catname) . "','','" . ($max_order+1) . "')", __FILE__, __LINE__);

    return mysql_insert_id();
}
/**
* CSV file import functions
* @author Ren�Haentjens , Ghent University
*/
function put_link($url, $cat, $title, $description, $on_homepage, $hidden)
{
    global $tbl_link;

    $urleq = "`url`='". addslashes($url) . "'"; $cateq = "`category_id`=". $cat;

    $result = api_sql_query("SELECT `id` FROM `" . $tbl_link .
        "` WHERE " . $urleq . ' AND ' . $cateq, __FILE__, __LINE__);

    if (mysql_num_rows($result) >= 1 && ($row = mysql_fetch_array($result)))
    {
        api_sql_query("UPDATE `" . $tbl_link . "` set title='" .
            addslashes($title) . "', description='" . addslashes($description) .
            "' WHERE id='" . addslashes($id = $row['id']) . "'", __FILE__, __LINE__);

        $lang_link = get_lang('update_link'); $ipu = "LinkUpdated"; $rv = 1;  // 1= upd
    }
    else  // add new link
    {
    	$result = api_sql_query("SELECT MAX(display_order) FROM  `" . $tbl_link .
    	    "` WHERE category_id='" . addslashes($cat). "'", __FILE__, __LINE__);
    	list($max_order) = mysql_fetch_row($result);

    	api_sql_query("INSERT INTO `" . $tbl_link .
    	    "` (url, title, description, category_id, display_order, on_homepage) VALUES ('" .
    	    addslashes($url) . "','" . addslashes($title) . "','" .
    	    addslashes($description) . "','" . addslashes($cat) . "','" .
    	    ($max_order+1) . "','" . $on_homepage . "')", __FILE__, __LINE__);

        $id = mysql_insert_id();
        $lang_link = get_lang('new_link'); $ipu = "LinkAdded"; $rv = 2;  // 2= new
    }

    global $_course, $nameTools, $_uid;
	//update_last_tooledit($_course, $nameTools, $id, $lang_link, $_uid);
	item_property_update($_course, TOOL_LINK, $id, $ipu, $_uid);

	if ($hidden && $ipu == "LinkAdded")
    	item_property_update($_course, TOOL_LINK, $id, "invisible", $_uid);

	return $rv;
}
/**
* CSV file import functions
* @author Ren�Haentjens , Ghent University
*/
function import_link($linkdata)  // url, category_id, title, description, ...
{
    // field names used in the uploaded file
    $known_fields = array('url', 'category', 'title', 'description',
        'on_homepage', 'hidden');
    $hide_fields = array('kw', 'kwd', 'kwds', 'keyword', 'keywords');

    // all other fields are added to description, as "name:value"

    // only one hide_field is assumed to be present, <> is removed from value

    if (!($url = trim($linkdata['url'])) ||
        !($title = trim($linkdata['title']))) return 0;  // 0= fail

    $cat = ($catname = trim($linkdata['category'])) ? get_cat($catname) : 0;

    foreach ($linkdata as $key => $value)
    if (!in_array($key, $known_fields))
        if (in_array($key, $hide_fields) &&
                ereg('^<?([^>]*)>?$', $value, $regs))  // possibly in <...>
            if (($kwlist = trim($regs[1])) != '')
                 $kw = '<i kw="' . htmlspecialchars($kwlist) . '">';
            else $kw = '';
            // i.e. assume only one of the $hide_fields will be present
            // and if found, hide the value as expando property of an <i> tag
        elseif (trim($value)) $d .= ', ' . $key . ':' . $value;
    if ($d) $d = substr($d, 2) . ' - ';

    return put_link($url, $cat, $title, $kw .
        ereg_replace('\[((/?(b|big|i|small|sub|sup|u))|br/)\]', '<\\1>',
        htmlspecialchars($d . $linkdata['description'])) . ($kw ? '</i>' : ''),
        $linkdata['on_homepage'] ? '1' : '0', $linkdata['hidden'] ? '1' : '0');
        // i.e. allow some BBcode tags, e.g. [b]...[/b]
}
/**
* CSV file import functions
* @author Ren�Haentjens , Ghent University
*/
function import_csvfile()
{
    global $catlinkstatus;  // feedback message to user

    if (is_uploaded_file($filespec = $_FILES['import_file']['tmp_name']) &&
            filesize($filespec) && ($myFile = @fopen($filespec, 'r')))
    {
        // read first line of file (column names) and find ',' or ';'
        $listsep = strpos($colnames = trim(fgets($myFile)), ',') !== FALSE ?
            ',' : (strpos($colnames, ';') !== FALSE ? ';' : '');

        if ($listsep)
        {
            $columns = array_map('strtolower', explode($listsep, $colnames));

            if (in_array('url', $columns) && in_array('title', $columns))
            {
                $stats = array(0, 0, 0);  // fails, updates, inserts

                while (($data = fgetcsv($myFile, 32768, $listsep)))
                {
                    foreach ($data as $i => $text)
                        $linkdata[$columns[$i]] = $text;
                    //  $linkdata['url', 'title', ...]

                    $stats[import_link($linkdata)]++; unset($linkdata);
                }

                $catlinkstatus = '';

                if ($stats[0]) $catlinkstatus .= $stats[0] . ' ' . get_lang('CsvLinesFailed');
                if ($stats[1]) $catlinkstatus .= $stats[1] . ' ' . get_lang('CsvLinesOld');
                if ($stats[2]) $catlinkstatus .= $stats[2] . ' ' . get_lang('CsvLinesNew');
            }
            else
                $catlinkstatus = get_lang('CsvFileNoURL') . ($colnames ?
                    get_lang('CsvFileLine1') . htmlspecialchars(substr($colnames,0,200)).'...' : '');
        }
        else
            $catlinkstatus = get_lang('CsvFileNoSeps') . ($colnames ?
                get_lang('CsvFileLine1') . htmlspecialchars(substr($colnames,0,200)).'...' : '');
        fclose($myFile);
    }
    else
        $catlinkstatus = get_lang('CsvFileNotFound');
}

?>



See more files for this project here

pointcarre

Pointcarre - a learning management system based on the Dokeos community releases. No fork, but containing locally developed extensions, features not (yet) in the standard release, integrated plugins...

Project homepage: http://sourceforge.net/projects/pointcarre
Programming language(s): PHP
License: other

  index.html
  link.php
  link_goto.php
  linkfunctions.php