mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
MINOR Documentation
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@74012 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
d1a9e2b3f6
commit
a9a12e51d6
@ -2,6 +2,9 @@
|
||||
/**
|
||||
* Represents a decimal field containing a currency amount.
|
||||
* Currency the currency class only supports single currencies.
|
||||
*
|
||||
* @todo Add localization support, see http://open.silverstripe.com/ticket/2931
|
||||
*
|
||||
* @package sapphire
|
||||
* @subpackage model
|
||||
*/
|
||||
|
@ -1,6 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
* Represents a date field.
|
||||
* The field currently supports New Zealand date format (DD/MM/YYYY),
|
||||
* or an ISO 8601 formatted date (YYYY-MM-DD).
|
||||
* Alternatively you can set a timestamp that is evaluated through
|
||||
* PHP's built-in date() function according to your system locale.
|
||||
*
|
||||
* @todo Add localization support, see http://open.silverstripe.com/ticket/2931
|
||||
*
|
||||
* @package sapphire
|
||||
* @subpackage model
|
||||
*/
|
||||
|
@ -1,6 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
* Represents a date-time field.
|
||||
* The field currently supports New Zealand date format (DD/MM/YYYY),
|
||||
* or an ISO 8601 formatted date and time (Y-m-d H:i:s).
|
||||
* Alternatively you can set a timestamp that is evaluated through
|
||||
* PHP's built-in date() and strtotime() function according to your system locale.
|
||||
*
|
||||
* @todo Add localization support, see http://open.silverstripe.com/ticket/2931
|
||||
*
|
||||
* @package sapphire
|
||||
* @subpackage model
|
||||
*/
|
||||
|
@ -1,6 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* Represents a column in the database with the type 'Time'
|
||||
* Represents a column in the database with the type 'Time'.
|
||||
*
|
||||
* @todo Add localization support, see http://open.silverstripe.com/ticket/2931
|
||||
*
|
||||
* @package sapphire
|
||||
* @subpackage model
|
||||
*/
|
||||
|
@ -1,6 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* Currency field.
|
||||
*
|
||||
* @todo Add localization support, see http://open.silverstripe.com/ticket/2931
|
||||
*
|
||||
* @package forms
|
||||
* @subpackage fields-formattedinput
|
||||
*/
|
||||
|
@ -1,7 +1,10 @@
|
||||
<?php
|
||||
/**
|
||||
* Displays a date field with day, month and year boxes, with a calendar to select
|
||||
* the date
|
||||
* the date.
|
||||
*
|
||||
* @todo Add localization support, see http://open.silverstripe.com/ticket/2931
|
||||
*
|
||||
* @package forms
|
||||
* @subpackage fields-datetime
|
||||
*/
|
||||
|
@ -1,7 +1,10 @@
|
||||
<?php
|
||||
/**
|
||||
* Displays a date field with day, month and year boxes, with a calendar to select
|
||||
* the date
|
||||
* the date.
|
||||
*
|
||||
* @todo Add localization support, see http://open.silverstripe.com/ticket/2931
|
||||
*
|
||||
* @package forms
|
||||
* @subpackage fields-datetime
|
||||
*/
|
||||
|
@ -2,6 +2,9 @@
|
||||
/**
|
||||
* Date field.
|
||||
* Default Value represented in the format
|
||||
*
|
||||
* @todo Add localization support, see http://open.silverstripe.com/ticket/2931
|
||||
*
|
||||
* @package forms
|
||||
* @subpackage fields-datetime
|
||||
*/
|
||||
|
@ -1,6 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* Field for entering a date/time pair.
|
||||
*
|
||||
* @todo Add localization support, see http://open.silverstripe.com/ticket/2931
|
||||
*
|
||||
* @package forms
|
||||
* @subpackage fields-datetime
|
||||
*/
|
||||
|
@ -3,6 +3,8 @@
|
||||
* Time field.
|
||||
* Default Value represented in the format passed as constructor.
|
||||
*
|
||||
* @todo Add localization support, see http://open.silverstripe.com/ticket/2931
|
||||
*
|
||||
* @package forms
|
||||
* @subpackage fields-datetime
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user