Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
2bc34b5b
Commit
2bc34b5b
authored
Feb 09, 2019
by
Carsten Rose
Browse files
Manual.rst: update pathFilename to pathFileName an all places
parent
975b1884
Changes
2
Hide whitespace changes
Inline
Side-by-side
extension/Documentation/Manual.rst
View file @
2bc34b5b
...
...
@@ -2707,7 +2707,7 @@ Fields:
+---------------------+-----------------------------+-----------------------------------------------------------------------------------------------------+
|Mode | enum('show', 'readonly', | | *Show*: regular user input field. This is the default. |
| | 'required', | | *Required*: User has to specify a value. Typically, an <empty string> represents 'no value'. |
| | 'hidden' ) | | *Readonly*:
u
ser can't change
any data
. Data not saved
.
|
| | 'hidden' ) | | *Readonly*:
U
ser can't change. Data
is
not saved
, except for FormElement with 'processReadOnly'
|
| | | | *Hidden*: *FormElement* is not visible. |
+---------------------+-----------------------------+-----------------------------------------------------------------------------------------------------+
|Mode sql | `SELECT` statement with | A value given here overwrites the setting from `mode`. Most useful with :ref:`dynamic-update`. |
...
...
@@ -5510,7 +5510,7 @@ Column: _link
+---+---+--------------+-----------------------------------+---------------------------+----------------------------------------------------------------------------------------------------------------------------------------+
| |x |Check |C:[
<color>
] |C:green |Show checked with '
<color>
'. Colors: blue, gray, green, pink, red, yellow. Default Color: green. |
+---+---+--------------+-----------------------------------+---------------------------+----------------------------------------------------------------------------------------------------------------------------------------+
| |x |Thumbnail |T:
<pathFile
n
ame>
|T:fileadmin/file.pdf |Creates a thumbnail on the fly. Size is specified via 'W'. See `column-thumbnail`_ |
| |x |Thumbnail |T:
<pathFile
N
ame>
|T:fileadmin/file.pdf |Creates a thumbnail on the fly. Size is specified via 'W'. See `column-thumbnail`_ |
+---+---+--------------+-----------------------------------+---------------------------+----------------------------------------------------------------------------------------------------------------------------------------+
| | |Dimension |W:[width]x[height] |W:50x , W:x60 , W:50x60 |Defines the pixel size of thumbnail. See `column-thumbnail`_ |
+---+---+--------------+-----------------------------------+---------------------------+----------------------------------------------------------------------------------------------------------------------------------------+
...
...
@@ -6238,14 +6238,14 @@ Examples: ::
Column: _thumbnail
^^^^^^^^^^^^^^^^^^
For file `T:
<pathFile
n
ame>
` a thumbnail will be rendered, saved (to be reused) and a HTML `
<img>
` tag is returned,
For file `T:
<pathFile
N
ame>
` a thumbnail will be rendered, saved (to be reused) and a HTML `
<img>
` tag is returned,
With the SIP encoded thumbnail.
The thumbnail:
* Size is specified via `W:
<dimension>
`. The file is only rendered once and subsequent access is delivered via a local QFQ cache.
* Will be rendered, if the source file is newer than the thumbnail or if the thumbnail dimension changes.
* The caching is done by building the MD5 of pathFile
n
ame and thumbnail dimension.
* The caching is done by building the MD5 of pathFile
N
ame and thumbnail dimension.
* Of multi page files like PDFs, the first page is used as the thumbnail.
All file formats, which 'convert' ImageMagick (https://www.imagemagick.org/) supports, can be
...
...
@@ -6265,7 +6265,7 @@ names for the cached thumbnails.
| | | parameter are otional. If non is given the default is W:150x |
+-------+--------------------------------+----------------------------------------------------------------------------+
| s | s:1, s:0 | Optional. Default: `s:1`. If SIP is enabled, the rendered URL |
| | | is a link via `api/download.php?..`. Else a direct pathFile
n
ame. |
| | | is a link via `api/download.php?..`. Else a direct pathFile
N
ame. |
+-------+--------------------------------+----------------------------------------------------------------------------+
| r | r:7 | Render Mode. Default 'r:0'. With 'r:7' only the url will be delivered. |
+-------+--------------------------------+----------------------------------------------------------------------------+
...
...
@@ -6369,7 +6369,7 @@ Copy to clipboard
+===================+================================+============================================================================+
| y[:
<content>
] | y, y:some content | Initiates 'copy to clipboard' mode. Source might given text or page or url |
+-------------------+--------------------------------+----------------------------------------------------------------------------+
| F:
<pathFile
n
ame>
| F:fileadmin/protected/data.R | pathFile
n
ame in DocumentRoot |
| F:
<pathFile
N
ame>
| F:fileadmin/protected/data.R | pathFile
N
ame in DocumentRoot |
+-------------------+--------------------------------+----------------------------------------------------------------------------+
Example: ::
...
...
extension/Source/core/Constants.php
View file @
2bc34b5b
...
...
@@ -1030,12 +1030,12 @@ const FE_SHOW_SECONDS = 'showSeconds'; // value: 0|1
const
FE_TIME_IS_OPTIONAL
=
'timeIsOptional'
;
// value: 0|1
const
FE_SHOW_ZERO
=
'showZero'
;
// 0|1 - Used for 'date/datime/time': in case of fe.value='0' shows corresponding '00-00-0000'|'00:00:00'
const
FE_HIDE_ZERO
=
'hideZero'
;
// 0|1 - In case of fe.value=0|'0', an empty string is shown.
const
FE_FILE_DESTINATION
=
'fileDestination'
;
// Target pathFile
n
ame for an uploaded file.
const
FE_FILE_DESTINATION_SPLIT
=
'fileDestinationSplit'
;
// Target pathFile
n
ame for an uploaded file.
const
FE_FILE_REPLACE_MODE
=
'fileReplace'
;
// Target pathFile
n
ame for an uploaded file.
const
FE_FILE_DESTINATION
=
'fileDestination'
;
// Target pathFile
N
ame for an uploaded file.
const
FE_FILE_DESTINATION_SPLIT
=
'fileDestinationSplit'
;
// Target pathFile
N
ame for an uploaded file.
const
FE_FILE_REPLACE_MODE
=
'fileReplace'
;
// Target pathFile
N
ame for an uploaded file.
const
FE_FILE_REPLACE_MODE_ALWAYS
=
'always'
;
// Target pathFilename for an uploaded file.
const
FE_FILE_MIME_TYPE_ACCEPT
=
'accept'
;
// Target pathFile
n
ame for an uploaded file.
const
FE_FILE_MAX_FILE_SIZE
=
'maxFileSize'
;
// Target pathFile
n
ame for an uploaded file.
const
FE_FILE_MIME_TYPE_ACCEPT
=
'accept'
;
// Target pathFile
N
ame for an uploaded file.
const
FE_FILE_MAX_FILE_SIZE
=
'maxFileSize'
;
// Target pathFile
N
ame for an uploaded file.
const
FE_FILE_CAPTURE
=
'capture'
;
// On a smartphone opens the camera
const
FE_FILE_SPLIT
=
'fileSplit'
;
const
FE_FILE_SPLIT_SVG
=
'svg'
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment