Minor - Adapting code comments to phpdoc

skala
Yannick Warnier 14 years ago
parent 1277285c23
commit 97f9f08977
  1. 7
      main/calendar/download.php
  2. 5
      main/calendar/print.php
  3. 6
      main/session/index.php
  4. 6
      user_portal.php

@ -8,10 +8,9 @@
* *
* @package chamilo.calendar * @package chamilo.calendar
*/ */
/**
/* * MAIN CODE
MAIN CODE */
*/
session_cache_limiter('public'); session_cache_limiter('public');

@ -4,6 +4,9 @@
* See copyright information in the Dokeos root directory, dokeos_license.txt * See copyright information in the Dokeos root directory, dokeos_license.txt
* @package chamilo.calendar * @package chamilo.calendar
*/ */
/**
* Code
*/
// name of the language file that needs to be included // name of the language file that needs to be included
$language_file = 'agenda'; $language_file = 'agenda';
$id=$_GET['id']; $id=$_GET['id'];
@ -75,4 +78,4 @@ while($row=Database::fetch_array($result))
<input type="button" value="<?php echo api_htmlentities(get_lang('Print'), ENT_QUOTES); ?>" onClick="javascript: window.print();" /> <input type="button" value="<?php echo api_htmlentities(get_lang('Print'), ENT_QUOTES); ?>" onClick="javascript: window.print();" />
</center> </center>
</body> </body>
</html> </html>

@ -5,7 +5,9 @@
* @package chamilo.session * @package chamilo.session
* @author Julio Montoya <gugli100@gmail.com> Beeznest * @author Julio Montoya <gugli100@gmail.com> Beeznest
*/ */
/**
* Code
*/
// Language files that should be included. // Language files that should be included.
$language_file = array('courses', 'index','tracking','exercice', 'admin'); $language_file = array('courses', 'index','tracking','exercice', 'admin');
$cidReset = true; $cidReset = true;
@ -375,4 +377,4 @@ $courses_tab = Display::grid_html('courses');
//Main headers data //Main headers data
echo Display::tabs($headers, array($courses_tab, $lp_tabs, Display::grid_html('exercises'), $my_reporting)); echo Display::tabs($headers, array($courses_tab, $lp_tabs, Display::grid_html('exercises'), $my_reporting));
Display::display_footer(); Display::display_footer();

@ -18,7 +18,9 @@
* @todo display_digest, shouldn't this be removed and be made into an extension? * @todo display_digest, shouldn't this be removed and be made into an extension?
*/ */
/* INIT SECTION */ /**
* INIT SECTION
*/
// Don't change these settings // Don't change these settings
define('SCRIPTVAL_No', 0); define('SCRIPTVAL_No', 0);
@ -735,4 +737,4 @@ function show_right_block($title, $content) {
return $html; return $html;
} }
// Footer // Footer
Display :: display_footer(); Display :: display_footer();

Loading…
Cancel
Save