PHPWord/src/PhpWord/Element/Header.php

117 lines
2.2 KiB
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\Element;
use PhpOffice\PhpWord\Element\Image;
2013-12-16 06:40:30 -05:00
/**
* Header element
*/
class Header extends AbstractElement
{
2013-12-16 06:40:30 -05:00
/**
2014-03-31 23:10:51 +07:00
* Header types constants
2013-12-16 06:40:30 -05:00
*
* @var string
2014-04-05 19:02:49 +07:00
* @link http://www.schemacentral.com/sc/ooxml/a-wtype-4.html Header or Footer Type
2013-12-16 06:40:30 -05:00
*/
2014-04-05 19:02:49 +07:00
const AUTO = 'default'; // default and odd pages
2013-12-16 06:40:30 -05:00
const FIRST = 'first';
2014-04-05 19:02:49 +07:00
const EVEN = 'even';
2013-12-16 06:40:30 -05:00
/**
2014-03-31 23:10:51 +07:00
* Header type
2013-12-16 06:40:30 -05:00
*
2014-03-31 23:10:51 +07:00
* @var string
2013-12-16 06:40:30 -05:00
*/
2014-04-05 19:02:49 +07:00
private $type = self::AUTO;
2013-12-16 06:40:30 -05:00
/**
2014-03-31 23:10:51 +07:00
* Create new instance
*
2014-04-03 10:13:13 +07:00
* @param int $sectionId
2014-04-05 19:02:49 +07:00
* @param int $headerId
* @param string $type
2013-12-16 06:40:30 -05:00
*/
2014-04-05 19:02:49 +07:00
public function __construct($sectionId, $headerId = 1, $type = self::AUTO)
2013-12-16 06:40:30 -05:00
{
$this->container = 'header';
2014-04-05 19:02:49 +07:00
$this->sectionId = $sectionId;
$this->setType($type);
$this->setDocPart($this->container, ($sectionId - 1) * 3 + $headerId);
2013-12-16 06:40:30 -05:00
}
2013-12-16 06:40:30 -05:00
/**
* Add a Watermark Element
*
* @param string $src
* @param mixed $style
2014-03-31 23:10:51 +07:00
* @return Image
2013-12-16 06:40:30 -05:00
*/
public function addWatermark($src, $style = null)
{
2014-03-31 23:10:51 +07:00
return $this->addImage($src, $style, true);
2013-12-16 06:40:30 -05:00
}
2014-04-05 19:02:49 +07:00
/**
* Set header type
*
* @param string $value
* @since 0.9.2
*/
public function setType($value = self::AUTO)
{
if (!in_array($value, array(self::AUTO, self::FIRST, self::EVEN))) {
$value = self::AUTO;
}
$this->type = $value;
}
2013-12-16 06:40:30 -05:00
/**
2014-03-31 23:10:51 +07:00
* Get header type
2014-04-05 19:02:49 +07:00
*
* @return string
2013-12-16 06:40:30 -05:00
*/
public function getType()
{
2014-04-05 19:02:49 +07:00
return $this->type;
2013-12-16 06:40:30 -05:00
}
/**
2014-03-31 23:10:51 +07:00
* Reset type to default
2014-04-05 19:02:49 +07:00
*
* @return string
2013-12-16 06:40:30 -05:00
*/
public function resetType()
{
2014-04-05 19:02:49 +07:00
return $this->type = self::AUTO;
2013-12-16 06:40:30 -05:00
}
/**
* First page only header
2014-04-05 19:02:49 +07:00
*
* @return string
2013-12-16 06:40:30 -05:00
*/
public function firstPage()
{
2014-04-05 19:02:49 +07:00
return $this->type = self::FIRST;
2013-12-16 06:40:30 -05:00
}
/**
2014-03-31 23:10:51 +07:00
* Even numbered pages only
2014-04-05 19:02:49 +07:00
*
* @return string
2013-12-16 06:40:30 -05:00
*/
public function evenPage()
{
2014-04-05 19:02:49 +07:00
return $this->type = self::EVEN;
2013-12-16 06:40:30 -05:00
}
}