Viewing file: W.php (1.19 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Plivo\XML;
use Plivo\Exceptions\PlivoXMLException;
/** * Class W * @package Plivo\XML */ class W extends Element {
protected $nestables = [ 'break', 'emphasis', 'phoneme', 'prosody', 'say-as', 'sub', ];
protected $valid_attributes = [ 'role' ];
protected $valid_role_attribute_values = [ 'amazon:VB','amazon:VBD','amazon:NN','amazon:SENSE_1' ];
/** * W constructor. * @param string $body * @param array $attributes * @throws PlivoXMLException */ function __construct($body, $attributes = []) { if (!$body) { throw new PlivoXMLException("No w set for ".$this->getName()); }
if(!empty($attributes)){ foreach ($attributes as $key => $value) { if ($key ==='role' && !in_array($value, $this->valid_role_attribute_values)) { throw new PlivoXMLException( "invalid attribute value ".$value." for ".$key." ".$this->name); } } }
parent::__construct($body, $attributes); $this->name = strtolower($this->name); } }
|