Difference between revisions of "Longtext field"
m |
m |
||
Line 10: | Line 10: | ||
*** [[Longtext field]] | *** [[Longtext field]] | ||
− | == Properties == | + | == Additional Properties == |
− | As for [[Text field]] | + | As for [[Text field#Additional_Properties|Text fields]] with the following differences... |
{| border="1" cellpadding="3" cellspacing="0" | {| border="1" cellpadding="3" cellspacing="0" | ||
Line 22: | Line 22: | ||
== Required Phrases == | == Required Phrases == | ||
− | No additional phrases. | + | No additional phrases beyond those required for [[Text field#Required_Phrases|Text fields]]. |
== Database == | == Database == |
Revision as of 22:24, 9 April 2023
EPrints 3 Reference: Directory Structure - Metadata Fields - Repository Configuration - XML Config Files - XML Export Format - EPrints data structure - Core API - Data Objects
Metadata Fields: Arclanguage - Base64 - Bigint - Boolean - Compound - Counter - Dataobjref - Date - Decimal - Email - Fields - Float - Id - Idci - Image - Int - Itemref - Keywords - Langid - Longtext - Longtext_counter - Multilang - Multipart - Name - Namedset - Pagerange - Recaptcha - Recaptcha3 - Relation - Search - Secret - Set - Storable - Subject - Subobject - Text - Time - Timestamp - Url - Uuid
Contents
Description
This field store larger text fields (e.g. title abstracts, reference lists, etc.) that cannot be stored in a Text field that only allows a maximum of 255 characters.
Inheritance
Additional Properties
As for Text fields with the following differences...
name | default | description |
input_rows | n/a | This property is taken from the repository configuration. |
maxlength | 65535 | Can be overridden in the field definition. |
Required Phrases
No additional phrases beyond those required for Text fields.
Database
Longtext fields are stored in the database as
fieldname LONGTEXT
API
See API page.
Examples
Most basic example.
{ name => 'task_purpose', type => 'longtext', }
Give more space, (so all text can be seen at once).
{ name => 'referencetext', type => 'longtext', input_rows => 15, }
Use a special rendering functions to display text in paragraphs.
{ name => 'abstract', type => 'longtext', input_rows => 10, render_single_value => 'render_paras', }
Use special ordering for field for English (e.g. ignore indefinite and definite articles, etc.)
{ name => 'title', type => 'longtext', input_rows => 3, make_single_value_orderkey => 'EPrints::Extras::english_title_orderkey', }