|
|
(16 intermediate revisions by one other user not shown) |
Line 1: |
Line 1: |
| This article describes the ''abstract'' class ''I2CE_FormField_BINARY_FILE''.
| | #REDIRECT [[Class: I2CE_FormField_BINARY_FILE (4.1.12)]] |
| *Extends the class: [[Class: I2CE_FormField_DB_BLOB | I2CE_FormField_DB_BLOB]].
| |
| *Parent Classses: [[Class: I2CE_FormField_DB_BLOB | I2CE_FormField_DB_BLOB]] [[Class: I2CE_FormField | I2CE_FormField]] [[Class: I2CE_Fuzzy | I2CE_Fuzzy]]
| |
| *Child Classes:
| |
| ** [[Class: I2CE_FormField_DOCUMENT | I2CE_FormField_DOCUMENT]]
| |
| ** [[Class: I2CE_FormField_IMAGE | I2CE_FormField_IMAGE]]
| |
| *Location: Part of the module [[I2CE Module List#BinField|BinField]] in the package [https://launchpad.net/i2ce I2CE]
| |
| *Source: Defined in the file [http://bazaar.launchpad.net/~intrahealth+informatics/i2ce/4.0.0-release/annotate/head:/modules/Forms/modules/Binary_Files/lib/I2CE_FormField_BINARY_FILE.php modules/Forms/modules/Binary_Files/lib/I2CE_FormField_BINARY_FILE.php]
| |
| *Author: Carl Leitner <litlfred@ibiblio.org>
| |
| *Since: v2.0.0
| |
| Class for defining all the database fields used by a [[Class: I2CE_Form | ]] object.
| |
| ==Variables==
| |
| ===$mime_type===
| |
| The magically determined mim type
| |
| *Type: protected $mime_type
| |
| | |
| ==Methods==
| |
| ===__construct()===
| |
| Create a new instance of a I2CE_FormField
| |
| *Signature: public function __construct($name,$options)
| |
| *Parameters:
| |
| ** [http://www.php.net/manual/en/language.types.string.php string ] $name
| |
| ** [http://www.php.net/manual/en/language.types.array.php array ] $options <br/>A list of options for this form field.
| |
| ***Default Value: array()
| |
| ===defaultExtension()===
| |
| get the default extension for this
| |
| *Signature: abstract protected function defaultExtension()
| |
| *Returns: [http://www.php.net/manual/en/language.types.string.php string ]
| |
| ===defaultMimeType()===
| |
| get the default extension for this
| |
| *Signature: abstract protected function defaultMimeType()
| |
| *Returns: [http://www.php.net/manual/en/language.types.string.php string ]
| |
| ===getContentLength()===
| |
| Gets the length of the conten
| |
| *Signature: public function getContentLength()
| |
| *Returns: [http://www.php.net/manual/en/language.types.integer.php int ]
| |
| ===getDBValue()===
| |
| Returns the value of this field ready to be stored in the database.
| |
| *Signature: public function getDBValue()
| |
| *Returns: [http://www.php.net/manual/en/language.pseudo-types.php mixed ]
| |
| ===getDisplayNode()===
| |
| Return the display value of this form field as a DOM Node.
| |
| *Signature: public function getDisplayNode($node,$template)
| |
| *Parameters:
| |
| ** [http://www.php.net/manual/en/class.domnode.php DOMNode ] $node
| |
| ** [[Class: I2CE_Template | I2CE_Template]] $template
| |
| *Returns: [http://www.php.net/manual/en/class.domnode.php DOMNode ]
| |
| ===getDisplayValue()===
| |
| *Signature: public function getDisplayValue()
| |
| ===getExtension()===
| |
| Get the extension associated with this binary file
| |
| *Signature: protected function getExtension()
| |
| ===getHeaders()===
| |
| Any headers that need to be sent when this field is dumped
| |
| *Signature: public function getHeaders()
| |
| *Returns: [http://www.php.net/manual/en/language.types.array.php array ]<br/>of string
| |
| ===getLink()===
| |
| Gets the link to this binary field. It will fail if there is field is not attached to any form
| |
| *Signature: protected function getLink()
| |
| *Returns: [http://www.php.net/manual/en/language.pseudo-types.php mixed ]<br/>string on success or null on failure.
| |
| ===getMimeType()===
| |
| Get the magically determined mime type
| |
| *Signature: public function getMimeType()
| |
| *Returns: [http://www.php.net/manual/en/language.types.string.php string ]
| |
| ===getModTime()===
| |
| Returns the last modification time of this field, or false if unknown @param mixed.
| |
| *Signature: public function getModTime()
| |
| ===isValid()===
| |
| Checks to see if the current value for this is set and valid.
| |
| *Signature: public function isValid()
| |
| *Returns: [http://www.php.net/manual/en/language.types.boolean.php boolean ]
| |
| ===isValidMimeType()===
| |
| Checks to see if a mime type is a valid mime type for this binary file
| |
| *Signature: abstract public function isValidMimeType($mime_type)
| |
| *Parameters:
| |
| ** [http://www.php.net/manual/en/language.types.string.php string ] $mime_type
| |
| *Returns: true<br/>if valid. false otherwise
| |
| ===processDOMEditable()===
| |
| *Signature: public function processDOMEditable($node,$template,$form_node)
| |
| *Parameters:
| |
| **$node
| |
| **$template
| |
| **$form_node
| |
| ===processDOMNotEditable()===
| |
| *Signature: public function processDOMNotEditable($node,$template,$form_node)
| |
| *Parameters:
| |
| **$node
| |
| **$template
| |
| **$form_node
| |
| *Returns: [http://www.php.net/manual/en/language.types.array.php array ]<br/>of DOMNodes
| |
| ===setFromDB()===
| |
| Sets the value of this field from the database format.
| |
| *Signature: public function setFromDB($value)
| |
| *Parameters:
| |
| ** [http://www.php.net/manual/en/language.pseudo-types.php mixed ] $value
| |
| ===setFromPost()===
| |
| Sets the value of this field from the posted form.
| |
| *Signature: public function setFromPost($post)
| |
| *Parameters:
| |
| ** [http://www.php.net/manual/en/language.pseudo-types.php mixed ] $post
| |
| | |
| | |
| [[Category:Class Documentation]]
| |