class TableStatsPdf extends TableStats (View source)

Table preferences/statistics

This class preserves the table co-ordinates,fields and helps in drawing/generating the Tables in PDF document.

Properties

mixed $displayfield from  TableStats
array $fields from  TableStats
array $primary from  TableStats
int|float $x from  TableStats
int|float $y from  TableStats
int|float $width from  TableStats
int $heightCell from  TableStats
protected Relation $relation from  TableStats
protected Font $font from  TableStats
int $height
Pdf $diagram

Methods

__construct(Dia $diagram, string $db, string $tableName, int|null $fontSize, int $pageNumber, bool $showKeys = false, bool $tableDimension = false, bool $offline = false)

No description

void
validateTableAndLoadFields()

Validate whether the table exists.

void
showMissingTableError()

Displays an error when the table cannot be found.

void
loadCoordinates()

Loads coordinates of a table

void
loadDisplayField()

Loads the table's display field

void
loadPrimaryKey()

Loads the PRIMARY key.

string
getTitle()

Returns title of the current table, title can have the dimensions of the table

void
tableDraw(int|null $fontSize, bool $withDoc, bool $setColor = false)

Do draw the table

Details

__construct(Dia $diagram, string $db, string $tableName, int|null $fontSize, int $pageNumber, bool $showKeys = false, bool $tableDimension = false, bool $offline = false)

No description

Parameters

Dia $diagram

schema diagram

string $db

current db name

string $tableName

table name

int|null $fontSize

The font size

int $pageNumber

current page number (from the $cfg['Servers'][$i]['table_coords'] table)

bool $showKeys

whether to display keys or not

bool $tableDimension

whether to display table position or not

bool $offline

whether the coordinates are sent from the browser

See also

Pdf
TableStatsPdf::setWidthTable
TableStatsPdf::setHeightTable

protected void validateTableAndLoadFields()

Validate whether the table exists.

Return Value

void

protected void showMissingTableError()

Displays an error when the table cannot be found.

Return Value

void

protected void loadCoordinates()

Loads coordinates of a table

Return Value

void

protected void loadDisplayField()

Loads the table's display field

Return Value

void

protected void loadPrimaryKey()

Loads the PRIMARY key.

Return Value

void

protected string getTitle()

Returns title of the current table, title can have the dimensions of the table

Return Value

string

title of the current table

void tableDraw(int|null $fontSize, bool $withDoc, bool $setColor = false)

Do draw the table

Parameters

int|null $fontSize

The font size or null to use the default value

bool $withDoc

Whether to include links to documentation

bool $setColor

Whether to display color

Return Value

void

See also

Pdf