29 lines
565 B
PHP
Raw Normal View History

2012-05-06 18:25:40 +02:00
<?php
/**
* 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
*/
namespace PhpOffice\PhpWord\Container;
2013-12-16 06:40:30 -05:00
/**
* Footer element
*/
2014-03-31 23:10:51 +07:00
class Footer extends Container
{
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
{
$this->container = 'footer';
$this->containerId = $sectionId;
$this->setDocPart($this->container, $this->containerId);
}
}