Minor - Added PHPDoc blocks

skala
Yannick Warnier 13 years ago
parent 915d73cc84
commit c37c14a232
  1. 10
      main/document/controller.php
  2. 4
      main/document/document_lite.php
  3. 7
      main/document/document_quota.php
  4. 10
      main/document/edit_odf.php
  5. 1
      main/document/remote.php

@ -1,7 +1,15 @@
<?php
/* For licensing terms, see /license.txt */
/**
* Document controller class definition
* @package chamilo.document
*/
/**
* Init
*/
class DocumentController {
function __construct($title = null) {
$this->tpl = new Template($title);
}
}
}

@ -1,5 +1,9 @@
<?php
/* For licensing terms, see /license.txt */
/**
* Light version of documents manager (currently disabled)
* @package chamilo.document
*/
/**
* Code
*/

@ -1,5 +1,12 @@
<?php
/* For licensing terms, see /license.txt */
/**
* Document quota management script
* @package chamilo.document
*/
/**
* Init
*/
$language_file = array('document');

@ -1,6 +1,12 @@
<?php
/* For licensing terms, see /license.txt */
/**
* ODF document editor script (maybe unused)
* @package chamilo.document
*/
/**
* Init
*/
require_once '../inc/global.inc.php';
exit;
$document_id = $_GET['id'];
@ -65,4 +71,4 @@ if (empty($document_data['parents'])) {
}
Display::display_header('');
echo '<div id="odf"></div>';
Display::display_footer();
Display::display_footer();

@ -3,6 +3,7 @@
/**
* Script that allows download of a specific file from external applications
* @author Arnaud Ligot <arnaud@cblue.be>, Based on work done for old videoconference application (I have about 30 minutes to write this peace of code so if somebody has more time, feel free to rewrite it...)
* @package chamilo.document
*/
/**
* Script that allows remote download of a file

Loading…
Cancel
Save