DecimalColumn
in package
implements
TableDataColumn
Class representing a decimal table column.
Interfaces, Classes and Traits
- TableDataColumn
- Interface representing a table column.
Table of Contents
- TYPE = "decimal"
- Type name.
- $field : string
- Field name.
- $title : string
- Title.
- $type : string
- Type.
- create() : DecimalColumn
- Create instance.
- field() : string
- Return field.
- title() : string
- Return title.
- type() : string
- Return type.
- __construct() : mixed
- Constructor.
Constants
TYPE
Type name.
private
mixed
TYPE
= "decimal"
Properties
$field
Field name.
private
string
$field
$title
Title.
private
string
$title
$type
Type.
private
string
$type
Methods
create()
Create instance.
public
static create(string $title, string $field) : DecimalColumn
Parameters
- $title : string
-
Title.
- $field : string
-
Field name.
Return values
DecimalColumn —Instance.
field()
Return field.
public
field() : string
Tags
Return values
string —Field.
title()
Return title.
public
title() : string
Tags
Return values
string —Title.
type()
Return type.
public
type() : string
Tags
Return values
string —Type.
__construct()
Constructor.
private
__construct(string $title, string $field) : mixed
Parameters
- $title : string
-
Title.
- $field : string
-
Field name.