34 lines
631 B
PHP
Raw Normal View History

<?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\Element;
/**
* Link element HTML writer
*
* @since 0.10.0
*/
class Link extends Element
{
/**
* Write link
*
* @return string
*/
public function write()
{
2014-04-26 16:05:29 +07:00
$html = "<a href=\"{$this->element->getTarget()}\">{$this->element->getText()}</a>" . PHP_EOL;
if (!$this->withoutP) {
2014-04-26 16:05:29 +07:00
$html = '<p>' . $html . '</p>' . PHP_EOL;
}
return $html;
}
}