Posted 8 июля, 20213 yr comment_170414 Есть например функция в \applications\downloads\sources\Filepublic static function formElements( $item=NULL, \IPS\Node\Model $container=NULL, $bulkKey = '' ) В ней редактор это /* Description */ $return['description'] = new \IPS\Helpers\Form\Editor( "{$bulkKey}file_desc", $item ? $item->desc : NULL, TRUE, array( 'app' => 'downloads', 'key' => 'Downloads', 'autoSaveKey' => ( $item ? "downloads-file-{$item->id}" : "{$bulkKey}downloads-new-file" ), 'attachIds' => ( $item === NULL ? NULL : array( $item->id, NULL, 'desc' ) ) ), '\IPS\Helpers\Form::floodCheck' ); То где тогда редактор в одноименной функции в \applications\cms\sources\Records ? Я смог получить только переменную, это $formElements['field_2'] но что в неё создает редактор? Я могу переписать эту переменную, но мне нужно знать хотя бы нужные опции создаваемого редактора. Я добавляю собственную валидацию в параметр $customValidationCode редактора. Но в приложении cms не получается. Так же пытался добавить в \IPS\Content\Item $return['content'] = new \IPS\Helpers\Form\Editor( static::$formLangPrefix . 'content', $item ? $commentObj->mapped('content') : NULL, TRUE, array( 'app' => static::$application, 'key' => mb_ucfirst( static::$module ), 'autoSaveKey' => ( $item === NULL ? ( 'newContentItem-' . static::$application . '/' . static::$module . '-' . ( $container ? $container->_id : 0 ) ) : ( 'contentEdit-' . static::$application . '/' . static::$module . '-' . $item->$idColumn ) ), 'attachIds' => ( $item === NULL ? NULL : array( $item->$idColumn, $commentObj->$commentIdColumn ) ) ), '\IPS\Helpers\Form::floodCheck', NULL, NULL, static::$formLangPrefix . 'content_editor' ); Но в приложениях это не учитывается, либо поле/переменная заменяется на другое из класса приложения. Моя функция валидации полностью рабочая, и работает например в public function commentFormElements() Edited 8 июля, 20213 yr by ZIKURIK
9 июля, 20213 yr Author comment_170445 Нашел решение:\IPS\cms\Fields Функция public function buildHelper( $value=NULL, $customValidationCode=NULL, ?\IPS\Content $content=NULL, $flags=0 ) Внутри неё задается $customValidationCode для полей.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.