Найдите имя модели поля / полей, которые были обновлены в Backend \ Behaviors \ FormController, используя OctoberCMS - PullRequest
0 голосов
/ 13 сентября 2018

Я хочу знать Имя модели поля / полей, которые были обновлены в Backend \ Behaviors \ FormController в бэкэнде OctoberCMS вот картинка введите описание изображения здесь

Это функция update_onSave () , которая будет запускаться после обновления формы в моем собственном плагине. Она находится в Backend \ Behaviors \ FormController

/**
 * AJAX handler "onSave" called from the update action and
 * primarily used for updating existing records.
 *
 * This handler will invoke the unique controller overrides
 * `formBeforeUpdate` and `formAfterUpdate`.
 *
 * @param int $recordId Record identifier
 * @param string $context Form context
 * @return mixed
 */
public function update_onSave($recordId = null, $context = null)
{
    $this->context = strlen($context) ? $context : $this->getConfig('update[context]', self::CONTEXT_UPDATE);
    $model = $this->controller->formFindModelObject($recordId);
    $this->initForm($model);

    $this->controller->formBeforeSave($model);
    $this->controller->formBeforeUpdate($model);

    $modelsToSave = $this->prepareModelsToSave($model, $this->formWidget->getSaveData());
    Db::transaction(function () use ($modelsToSave) {
        foreach ($modelsToSave as $modelToSave) {
            $modelToSave->save(null, $this->formWidget->getSessionKey());
        }
    });

    $this->controller->formAfterSave($model);
    $this->controller->formAfterUpdate($model);

    Flash::success($this->getLang("{$this->context}[flashSave]", 'backend::lang.form.update_success'));

    if ($redirect = $this->makeRedirect('update', $model)) {
        return $redirect;
    }
}

Это formAfterUpdate () , расположенный также в Backend \ Behaviors \ FormController , который будет запускаться после сохранения формы обновления.

 /**
 * Called after the updating form is saved.
 * @param Model
 * 
 */
public function formAfterUpdate($model)
{
    echo $model;

}

Я хочу узнать название модели из моего плагина, который был обновлен, но он отображает только те поля, которые были обновлены следующим образом.

{"flagstateid":80,"name":"VIETNAM","code":"[VN]","image":null}

1 Ответ

0 голосов
/ 14 сентября 2018

Полагаю, это проще, чем мы думали

, если вы сейчас работаете над контроллером, который реализует Backend\Behaviors\FormController или даже внутри Backend\Behaviors\FormController, вы можете получить класс модели \ name, такой как

/**
 * Called after the updating form is saved.
 * @param Model
 */
public function formAfterUpdate($model)
{
    $modelName = $this->config->modelClass;
    // $modelName will be : "\HardikSatasiya\TimeTracker\Models\TimeLog"
}

Как просто form Behavior требует конфигурации для update model, чтобы вы могли получить эти данные из config it-self

Проверьте это изображение

enter image description here

Если у вас есть какие-либо сомнения, пожалуйста, прокомментируйте.

...