]> git.mjollnir.org Git - moodle.git/commitdiff
Changed some PHP comments.
authorstronk7 <stronk7>
Tue, 12 Sep 2006 17:41:22 +0000 (17:41 +0000)
committerstronk7 <stronk7>
Tue, 12 Sep 2006 17:41:22 +0000 (17:41 +0000)
admin/xmldb/actions/view_structure_php/view_structure_php.class.php

index 74332175194167e16a1cbfe585bf34752698fe58..df0b7b625607d6d12367d0babed79104be1b030e 100644 (file)
@@ -168,7 +168,7 @@ class view_structure_php extends XMLDBAction {
 
     /// Add contents
         $result .= XMLDB_LINEFEED;
-        $result .= '    /// Create table ' . $table->getName() . XMLDB_LINEFEED;
+        $result .= '    /// Define table ' . $table->getName() . ' to be created' . XMLDB_LINEFEED;
         $result .= '        $table = new XMLDBTable(' . "'" . $table->getName() . "'" . ');' . XMLDB_LINEFEED;
         $result .= XMLDB_LINEFEED;
         $result .= '    /// Adding fields to table ' . $table->getName() . XMLDB_LINEFEED;
@@ -243,7 +243,7 @@ class view_structure_php extends XMLDBAction {
 
     /// Add contents
         $result .= XMLDB_LINEFEED;
-        $result .= '    /// Create table ' . $table->getName() . XMLDB_LINEFEED;
+        $result .= '    /// Define table ' . $table->getName() . ' to be dropped' . XMLDB_LINEFEED;
         $result .= '        $table = new XMLDBTable(' . "'" . $table->getName() . "'" . ');' . XMLDB_LINEFEED;
 
     /// Launch the proper DDL
@@ -281,7 +281,7 @@ class view_structure_php extends XMLDBAction {
 
     /// Add contents
         $result .= XMLDB_LINEFEED;
-        $result .= '    /// Create table ' . $table->getName() . XMLDB_LINEFEED;
+        $result .= '    /// Define table ' . $table->getName() . ' to be renamed to NEWNAMEGOESHERE' . XMLDB_LINEFEED;
         $result .= '        $table = new XMLDBTable(' . "'" . $table->getName() . "'" . ');' . XMLDB_LINEFEED;
 
     /// Launch the proper DDL