2012-05-06 18:25:40 +02:00
|
|
|
<?php
|
|
|
|
|
/**
|
2014-03-26 16:33:20 +07:00
|
|
|
* PHPWord
|
2012-05-06 18:25:40 +02:00
|
|
|
*
|
2014-03-27 23:55:06 +07:00
|
|
|
* @link https://github.com/PHPOffice/PHPWord
|
|
|
|
|
* @copyright 2014 PHPWord
|
|
|
|
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
2012-05-06 18:25:40 +02:00
|
|
|
*/
|
|
|
|
|
|
2014-03-31 01:13:02 +07:00
|
|
|
namespace PhpOffice\PhpWord\Container;
|
2013-12-16 06:40:30 -05:00
|
|
|
|
2014-03-24 00:26:10 +07:00
|
|
|
/**
|
|
|
|
|
* Footer element
|
|
|
|
|
*/
|
2014-03-31 23:10:51 +07:00
|
|
|
class Footer extends Container
|
2014-03-22 10:06:08 +04:00
|
|
|
{
|
2013-12-16 06:40:30 -05:00
|
|
|
/**
|
2014-03-31 23:10:51 +07:00
|
|
|
* Create new instance
|
2013-12-16 06:40:30 -05:00
|
|
|
*
|
2014-03-31 23:10:51 +07:00
|
|
|
* @param int $sectionId
|
2013-12-16 06:40:30 -05:00
|
|
|
*/
|
2014-03-31 23:10:51 +07:00
|
|
|
public function __construct($sectionId)
|
2013-12-16 06:40:30 -05:00
|
|
|
{
|
2014-04-02 09:01:44 +07:00
|
|
|
$this->container = 'footer';
|
|
|
|
|
$this->containerId = $sectionId;
|
2014-04-05 00:08:00 +07:00
|
|
|
$this->setDocPart($this->container, $this->containerId);
|
2013-12-15 12:56:40 +01:00
|
|
|
}
|
2014-03-11 19:26:56 +07:00
|
|
|
}
|