have problems finding new extended xmldb_xxxx objects if they haven't been defined before.
/// This class represent one XMLDB Field
-/// TODO: Delete for 2.1 (deeprecated in 2.0).
-/// Deprecated API starts here
-class XMLDBField extends xmldb_field {
-
- function __construct($name) {
- parent::__construct($name);
- }
-
-}
-/// Deprecated API ends here
-
class xmldb_field extends xmldb_object {
var $type;
}
}
+/// TODO: Delete for 2.1 (deeprecated in 2.0).
+/// Deprecated API starts here
+class XMLDBField extends xmldb_field {
+
+ function __construct($name) {
+ parent::__construct($name);
+ }
+
+}
+/// Deprecated API ends here
+
?>
/// This class represent one XMLDB Index
-/// TODO: Delete for 2.1 (deeprecated in 2.0).
-/// Deprecated API starts here
-class XMLDBIndex extends xmldb_index {
-
- function __construct($name) {
- parent::__construct($name);
- }
-
-}
-/// Deprecated API ends here
-
class xmldb_index extends xmldb_object {
var $unique;
}
}
+/// TODO: Delete for 2.1 (deeprecated in 2.0).
+/// Deprecated API starts here
+class XMLDBIndex extends xmldb_index {
+
+ function __construct($name) {
+ parent::__construct($name);
+ }
+
+}
+/// Deprecated API ends here
+
?>
/// This class represent one XMLDB Key
-/// TODO: Delete for 2.1 (deeprecated in 2.0).
-/// Deprecated API starts here
-class XMLDBKey extends xmldb_key {
-
- function __construct($name) {
- parent::__construct($name);
- }
-
-}
-/// Deprecated API ends here
-
class xmldb_key extends xmldb_object {
var $type;
}
}
+/// TODO: Delete for 2.1 (deeprecated in 2.0).
+/// Deprecated API starts here
+class XMLDBKey extends xmldb_key {
+
+ function __construct($name) {
+ parent::__construct($name);
+ }
+
+}
+/// Deprecated API ends here
+
?>
/// (a group of SQL arbitrary sentences)
/// (only INSERT is allowed for now)
-/// TODO: Delete for 2.1 (deeprecated in 2.0).
-/// Deprecated API starts here
-class XMLDBStatement extends xmldb_statement {
-
- function __construct($name) {
- parent::__construct($name);
- }
-
-}
-/// Deprecated API ends here
-
class xmldb_statement extends xmldb_object {
var $table; // Table we are handling
}
}
+/// TODO: Delete for 2.1 (deeprecated in 2.0).
+/// Deprecated API starts here
+class XMLDBStatement extends xmldb_statement {
+
+ function __construct($name) {
+ parent::__construct($name);
+ }
+
+}
+/// Deprecated API ends here
+
?>
/// This class represent one XMLDB table
-/// TODO: Delete for 2.1 (deeprecated in 2.0).
-/// Deprecated API starts here
-class XMLDBTable extends xmldb_table {
-
- function __construct($name) {
- parent::__construct($name);
- }
-
-}
-/// Deprecated API ends here
-
class xmldb_table extends xmldb_object {
var $fields;
}
}
+/// TODO: Delete for 2.1 (deeprecated in 2.0).
+/// Deprecated API starts here
+class XMLDBTable extends xmldb_table {
+
+ function __construct($name) {
+ parent::__construct($name);
+ }
+
+}
+/// Deprecated API ends here
+
?>