Added firstPage function and evenPage function to bring Footer Element

in conformity with Header Element
This commit is contained in:
Bas-Jan 't Jong 2014-05-04 17:59:58 +02:00
parent 4824985fac
commit 250562ddd6
1 changed files with 20 additions and 0 deletions

View File

@ -61,4 +61,24 @@ class Footer extends AbstractContainer
{
return $this->type;
}
/**
* First page only footer
*
* @return string
*/
public function firstPage()
{
return $this->type = self::FIRST;
}
/**
* Even numbered pages only
*
* @return string
*/
public function evenPage()
{
return $this->type = self::EVEN;
}
}