sterzycom/panel/app/fields/textarea/controller.php

23 lines
462 B
PHP
Raw Normal View History

<?php
class TextareaFieldController extends Kirby\Panel\Controllers\Field {
public function link() {
$page = $this->model();
$form = $this->form('link', array($page, $this->fieldname()));
return $this->modal('link', compact('form'));
}
public function email($textarea = null) {
$page = $this->model();
$form = $this->form('email', array($page, $this->fieldname()));
return $this->modal('email', compact('form'));
}
}