Source for file index.php
Documentation is available at index.php
* @package linea21.modules
* @author linea21 <info@linea21.com>
* @license http://opensource.org/licenses/gpl-3.0.html
//////////// Check Droits utilisateur ////////////
include_once($dir. "/". SQL. ".inc.php");
include_once('../class/class.workshop.php');
include_once('../class/class.workshop_report.php');
include_once('../class/class.calendar.php');
include_once('../class/class.workshop_com.php');
$link_details= "<a href=\"index.php?rub=workshop&todo=det&id=". $id. "\" title=\"". _t('workshop','det'). "\">". _t('workshop','det'). "</a>";
$link_cal= "<a href=\"index.php?rub=workshop&todo=list_cal&id=". $id. "\" title=\"". _t('workshop','list_cal'). "\">". _t('workshop','list_cal'). "</a>";
$link_com= "<a href=\"index.php?rub=workshop&todo=list_com&id=". $id. "\" title=\"". _t('workshop','list_com'). "\">". _t('workshop','list_com'). "</a>";
$link_doc= '<a id="browse_files" href="../library/access.php?langCode='. U_L. '&expandedFolder=workgroups/'. $id. '/" title="'. _t('filemanager','browse'). '">'. _t('workshop','list_doc'). '</a>';
$liste= $link_details. " | ". $link_cal. " | ". $link_com. " | ". $link_doc;
echo "<div class=\"mod_link\">";
echo "</div><br class=\"brendstep\" />";
$todopage.= "modpass.php";
$todopage.= "add_cal.php";
$todopage.= "sup_cal.php";
$todopage.= "mod_cal.php";
$todopage.= "list_cal.php";
$todopage.= "list_com.php";
$todopage.= "det_com.php";
$todopage.= "sup_com.php";
$todopage.= "lock_com.php";
$todopage.= "mod_com.php";
$todopage.= "add_com.php";
<script type="text/javascript">
$(document).ready(function(){
$("#browse_files").click(function() {
OpenServerBrowser($('#browse_files').attr('href'),screen.width * 0.7, screen.height * 0.7 );
|