1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-11 01:04:16 +02:00

Bump version to 3.0.231

This commit is contained in:
Ryan Cramer
2023-11-17 14:21:11 -05:00
parent 4aa7104378
commit 993b5cc162
2 changed files with 16 additions and 1 deletions

View File

@@ -79,7 +79,7 @@ class ProcessWire extends Wire {
* Reversion revision number
*
*/
const versionRevision = 230;
const versionRevision = 231;
/**
* Version suffix string (when applicable)

View File

@@ -746,6 +746,21 @@ class InputfieldTextTags extends Inputfield implements
return $this->addTag($value, $label);
}
/**
* Add multiple selectable options
*
* @param array $options
* @return self
* @since 3.0.131
*
*/
public function addOptions(array $options) {
foreach($options as $value => $label) {
$this->addTag($value, $label);
}
return $this;
}
/**
* Add selectable option with label, optionally for specific language
*