1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177:
<?php
namespace Omeka\Form;
use DateTimeZone;
use Zend\Form\Form;
class InstallationForm extends Form
{
public function init()
{
$this->remove('installationform_csrf');
$this->add([
'name' => 'user',
'type' => 'fieldset',
'options' => [
'label' => 'Create the first user',
],
]);
$this->add([
'name' => 'settings',
'type' => 'fieldset',
'options' => [
'label' => 'Settings',
],
]);
$this->add([
'name' => 'submit',
'type' => 'submit',
'attributes' => [
'value' => 'Submit',
],
]);
$this->get('user')->add([
'name' => 'email',
'type' => 'Email',
'options' => [
'label' => 'Email',
],
'attributes' => [
'id' => 'email',
'required' => true,
],
]);
$this->get('user')->add([
'name' => 'email-confirm',
'type' => 'Email',
'options' => [
'label' => 'Confirm email',
],
'attributes' => [
'id' => 'email-confirm',
'required' => true,
],
]);
$this->get('user')->add([
'name' => 'password',
'type' => 'Password',
'options' => [
'label' => 'Password',
],
'attributes' => [
'id' => 'password',
'required' => true,
],
]);
$this->get('user')->add([
'name' => 'password-confirm',
'type' => 'Password',
'options' => [
'label' => 'Confirm password',
],
'attributes' => [
'id' => 'password-confirm',
'required' => true,
],
]);
$this->get('user')->add([
'name' => 'name',
'type' => 'Text',
'options' => [
'label' => 'Display name',
],
'attributes' => [
'id' => 'name',
'required' => true,
],
]);
$this->get('settings')->add([
'name' => 'installation_title',
'type' => 'Text',
'options' => [
'label' => 'Installation title',
],
'attributes' => [
'id' => 'installation-title',
'required' => true,
],
]);
$timeZones = DateTimeZone::listIdentifiers();
$timeZones = array_combine($timeZones, $timeZones);
$defaultTimeZone = ini_get('date.timezone');
if (!$defaultTimeZone) {
$defaultTimeZone = 'UTC';
}
$this->get('settings')->add([
'name' => 'time_zone',
'type' => 'Select',
'options' => [
'label' => 'Time zone',
'value_options' => $timeZones,
],
'attributes' => [
'id' => 'time-zone',
'required' => true,
'value' => $defaultTimeZone,
],
]);
$this->get('settings')->add([
'name' => 'locale',
'type' => 'Omeka\Form\Element\LocaleSelect',
'options' => [
'label' => 'Locale',
],
]);
$inputFilter = $this->getInputFilter();
$inputFilter->get('user')->add([
'name' => 'password',
'required' => true,
'validators' => [
[
'name' => 'StringLength',
'options' => [
'min' => 6,
],
],
],
]);
$inputFilter->get('user')->add([
'name' => 'password-confirm',
'required' => true,
'validators' => [
[
'name' => 'Identical',
'options' => [
'token' => 'password',
'message' => 'The passwords did not match',
],
],
],
]);
$inputFilter->get('user')->add([
'name' => 'email-confirm',
'required' => true,
'validators' => [
[
'name' => 'Identical',
'options' => [
'token' => 'email',
'message' => 'The emails did not match',
],
],
],
]);
$inputFilter->get('settings')->add([
'name' => 'locale',
'allow_empty' => true,
]);
}
}