Searched refs:allowedElements (Results 1 – 3 of 3) sorted by relevance
| /plugin/adhoctags/ |
| D | action.php | 23 $allowedElements = explode(',',$this->getConf('allowedElements')); 29 if (in_array('b', $allowedElements)) { 40 if (in_array('i', $allowedElements)) { 51 if (in_array('s', $allowedElements)) { 63 if (in_array('u', $allowedElements)) { 74 if (in_array('small', $allowedElements)) { 85 if (in_array('q', $allowedElements)) { 96 if (in_array('abbr', $allowedElements)) { 107 if (in_array('dfn', $allowedElements)) { 118 if (in_array('kbd', $allowedElements)) { [all …]
|
| /plugin/geophp/vendor/funiq/geophp/src/Adapter/ |
| D | GpxTypes.php | 92 * @param array|null $allowedElements Which elements can be used in each GPX type 97 public function __construct($allowedElements = null) argument 107 if (is_array($allowedElements)) { 108 foreach ($allowedElements as $type => $elements) {
|
| D | GPX.php | 50 * @param array|null $allowedElements Which elements can be read from each GPX type 57 public function read($gpx, $allowedElements = null) argument 59 $this->gpxTypes = new GpxTypes($allowedElements); 96 $geom = $this->read($gpx, $allowedElements); 311 * @param array|null $allowedElements Which elements can be added to each GPX type 317 public function write(Geometry $geometry, $namespace = null, $allowedElements = null) argument 322 $this->gpxTypes = new GpxTypes($allowedElements);
|