PHPWord/src/PhpWord/Writer/HTML/Style/AbstractStyle.php
2014-05-04 17:55:54 +07:00

63 lines
1.2 KiB
PHP

<?php
/**
* PHPWord
*
* @link https://github.com/PHPOffice/PHPWord
* @copyright 2014 PHPWord
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
*/
namespace PhpOffice\PhpWord\Writer\HTML\Style;
/**
* Style writer
*
* @since 0.10.0
*/
abstract class AbstractStyle
{
/**
* Style
*
* @var array|\PhpOffice\PhpWord\Style\AbstractStyle
*/
protected $style;
/**
* Write style
*/
abstract public function write();
/**
* Create new instance
*
* @param array|\PhpOffice\PhpWord\Style\AbstractStyle $style
*/
public function __construct($style = null)
{
$this->style = $style;
}
/**
* Takes array where of CSS properties / values and converts to CSS string
*
* @param array $css
* @return string
*/
protected function assembleCss($css)
{
$pairs = array();
$string = '';
foreach ($css as $key => $value) {
if ($value != '') {
$pairs[] = $key . ': ' . $value;
}
}
if (!empty($pairs)) {
$string = implode('; ', $pairs) . ';';
}
return $string;
}
}