You are here

function Pagination::getValue in Pagination (Node) 6

Same name and namespace in other branches
  1. 7 includes/Pagination.inc \Pagination::getValue()

@desc Get pagination value

Parameters

string node type: @return int pagination value @public

File

./pagination.module, line 560
pagination.module @desc Allow for arbitrary nodes to be paginated. administrators can set which nodes they wish to paginate, and the length of content required to split a node into pages. Alternatively, content creators can set manual break points…

Class

Pagination
@desc Handles all the pagination logic

Code

function getValue($type) {
  $this->value = $this
    ->getSettings('value', $type);
  return $this->value;
}