コード例 #1
0
ファイル: ContentEditor.php プロジェクト: svobodni/web
 public function getValue()
 {
     $args = new ContentEditorArgs();
     $args->setValue(parent::getValue());
     $this->eventManager->dispatchEvent(ContentEditorEvents::onContentEditorSave, $args);
     $value = $args->getValue();
     return $value;
 }