Private Method Details |
get_upload_column |
private void get_upload_column()
|
|
Currently this means 2nd parameter, but maybe we should also expand this to include verification that this column is an upload type
|
Returns |
void |
|
_parts |
private void _parts( $str, boolean $param_num)
|
|
This is generic, but in this object is used to break $ftype into components. Modified: Joe Khoobyar Added support for [] quoted sql as an atom (part) in the regexp.
|
Parameter |
|
|
$str |
|
|
Warning: documentation is missing. |
|
|
boolean |
$param_num |
|
|
Warning: documentation is missing. |
|
Returns |
void |
|
_has_table |
private boolean _has_table()
|
|
|
Returns |
boolean |
|
_appears_as_table |
private void _appears_as_table( $table)
|
|
Joe Khoobyar Fixed bugs in regexps.
|
Parameter |
|
|
$table |
|
|
Warning: documentation is missing. |
|
Returns |
void |
|
_update |
private boolean _update()
|
|
Checks to make sure that a different (diff id) column doesn't exist with same name.
|
Returns |
boolean True on success; false on error. |
|
_change_column |
private boolean _change_column(string $old_name, string $new_name, string $new_type, string $table)
|
|
|
Parameter |
|
string |
$old_name |
|
|
Original column name |
|
|
string |
$new_name |
|
|
New column name |
|
|
string |
$new_type |
|
|
New column type |
|
|
string |
$table |
|
|
Warning: documentation is missing. |
|
Returns |
boolean Success of operation |
|
_insert |
private boolean _insert()
|
|
First checks to make sure that the dbfield w/ same name doesn't already exist.
|
Returns |
boolean True on success; false on error. |
|
delete |
private void delete(boolean $complete_removal)
|
|
Because of the complexity of the delete() method for dbfields, you cannot call this method without instantiating the class. (i.e. pxdb_dbfield::delete() will not work.)
|
Parameter |
|
boolean |
$complete_removal |
|
|
Warning: documentation is missing. |
|
Returns |
void |
|