function loadAdInsertion() { $size = ['width' => 30, 'height' => 30]; $form = DOM\HTML::getinstance()->createElement('form'); $form->name = basename(__FILE__, '.php'); $form->action = '.'; $form->method = 'POST'; $section = $form->append('fieldset', null, ['form' => $form->name]); $section->append('legend', 'Section'); $section->append('label', 'Date: ', ['for' => 'ad-insertion[date]']); $section->append('input', null, ['type' => 'date', 'name' => 'ad-insertion[date]', 'id' => 'ad-insertion[date]', 'placeholder' => 'YYYY-mm-dd', 'require' => true]); $section->append('label', 'By: ', ['for' => 'ad-insertion[by]']); $section->append('input', null, ['type' => 'text', 'name' => 'ad-insertion[by]', 'id' => 'ad-insertion[by]', 'pattern' => '[A-z ]+', 'placeholder' => 'Your name', 'required' => true]); $section->append('br'); $section->append('label', 'A', ['for' => 'ad-insertion[section][a]']); $section->append('input', null, ['type' => 'checkbox', 'name' => 'ad-insertion[section][a]', 'id' => 'ad-insertion[section][a]']); $section->append('label', 'B', ['for' => 'ad-insertion[section][b]']); $section->append('input', null, ['type' => 'checkbox', 'name' => 'ad-insertion[section][b]', 'id' => 'ad-insertion[section][b]']); $section->append('label', 'C', ['for' => 'ad-insertion[section][c]']); $section->append('input', null, ['type' => 'checkbox', 'name' => 'ad-insertion[section][c]', 'id' => 'ad-insertion[section][c]']); $section->append('label', 'D', ['for' => 'ad-insertion[section][d]']); $section->append('input', null, ['type' => 'checkbox', 'name' => 'ad-insertion[section][d]', 'id' => 'ad-insertion[section][d]']); $section->append('label', ' Classification', ['for' => 'ad-insertion[classification]']); $section->append('input', null, ['type' => 'text', 'name' => 'ad-insertion[classification]', 'id' => 'ad-insertion[classification]', 'placeholder' => '???', 'required' => true]); $section->append('label', null, ['for' => 'ad-insertion[special-edition]'])->append('i', 'Special Edition'); $section->append('input', null, ['type' => 'text', 'name' => 'ad-insertion[special-edition]', 'placeholder' => '???', 'id' => 'ad-insertion[special-edition]']); unset($section); $contact = $form->append('fieldset', null, ['for' => 'ad-insertion']); $contact->append('legend', 'Contact Info'); $contact->append('label', 'Account name: ', ['for' => 'ad-insertion[acct-name]']); $contact->append('input', null, ['type' => 'text', 'name' => 'ad-insertion[acct-name]', 'id' => 'ad-insertion[acct-name]', 'pattern' => '[\\w ]+', 'placeholder' => 'Business name', 'required' => '']); $contact->append('br'); $contact->append('label', 'Contact: ', ['for' => 'ad-insertion[contact]']); $contact->append('input', null, ['type' => 'text', 'name' => 'ad-insertion[contact]', 'id' => 'ad-insertion[contact]', 'placeholder' => 'First Last', 'pattern' => '[A-z \\.]+', 'required' => '']); $contact->append('label', 'Phone: ', ['for' => 'ad-insertion[phone]']); $contact->append('input', null, ['type' => 'tel', 'name' => 'ad-insertion[phone]', 'id' => 'ad-insertion[phone]', 'placeholder' => '123456789', 'required' => '']); $contact->append('br'); $contact->append('label', 'Address: ', ['for' => 'ad-insertion[address]']); $contact->append('input', null, ['type' => 'text', 'name' => 'ad-insertion[address]', 'id' => 'ad-insertion[address]', 'pattern' => '[\\w \\.]+', 'placeholder' => '123 Easy St.', 'required' => '']); unset($contact); $charges = $form->append('fieldset', null, ['form' => 'ad-insertion']); $charges->append('legend', 'Charges'); $charges->append('label', 'Rate: ', ['for' => 'ad-insertion[rate]']); $charges->append('input', null, ['type' => 'number', 'name' => 'ad-insertion[rate]', 'id' => 'ad-insertion[rate]', 'min' => '0', 'step' => 0.01, 'value' => '0', 'placeholder' => '50.00', 'required' => '']); $charges->append('label', 'Color Rate: ', ['for' => 'ad-insertion[color-rate]']); $charges->append('input', null, ['type' => 'number', 'name' => 'ad-insertion[color-rate]', 'id' => 'ad-insertion[color-rate]', 'min' => '0', 'step' => 0.01, 'value' => '0', 'placeholder' => 5.25, 'required' => '']); $charges->append('label', 'Full ', ['for' => 'ad-insertion[q][full]']); $charges->append('input', null, ['type' => 'radio', 'name' => 'ad-insertion[q]', 'id' => 'ad-insertion[q][full]', 'value' => 'full', 'placeholder' => '???']); $charges->append('label', '1 ', ['for' => 'ad-insertion[q][1]']); $charges->append('input', null, ['type' => 'radio', 'name' => 'ad-insertion[q]', 'id' => 'ad-insertion[q][1]', 'value' => '1']); $charges->append('label', '2 ', ['for' => 'ad-insertion[q][2]']); $charges->append('input', null, ['type' => 'radio', 'name' => 'ad-insertion[q]', 'id' => 'ad-insertion[q][2]', 'value' => '2']); $charges->append('br'); $charges->append('h2', 'Size'); $charges->append('hr'); $charges->append('label', 'Width: ', ['for' => 'ad-insertion[size][width]']); $charges->append('input', null, ['type' => 'number', 'name' => 'ad-insertion[size][width]', 'id' => 'ad-insertion[size][width]', 'min' => '1', 'max' => '6', 'step' => '1', 'placeholder' => 3, 'required' => '']); $charges->append('label', 'Height: ', ['for' => 'ad-insertion[size][height]']); $charges->append('input', null, ['type' => 'number', 'name' => 'ad-insertion[size][height]', 'id' => 'ad-insertion[size][height]', 'min' => '1', 'max' => '21', 'step' => '0.5', 'placeholder' => 5, 'required' => '']); $charges->append('h2', 'Run Dates'); $charges->append('hr'); $charges->append('label', 'From: ', ['for' => 'ad-insertion[run][start]']); $charges->append('input', null, ['type' => 'week', 'name' => 'ad-insertion[run][start]', 'id' => 'ad-insertion[run][start]', 'placeholder' => 'YYYY-W##', 'required' => '']); $charges->append('label', 'To: ', ['for' => 'ad-insertion[run][end]']); $charges->append('input', null, ['type' => 'week', 'name' => 'ad-insertion[run][end]', 'id' => 'ad-insertion[run][end]', 'placeholder' => 'YYYY-W##', 'required' => '']); $charges->append('label', null, ['for' => 'ad-insertion[sheets]'])->append('b')->append('abbr', 'TFN', ['title' => 'Tile Further Notice']); $charges->append('input', null, ['type' => 'text', 'name' => 'ad-insertion[sheets]', 'id' => 'ad-insertion[sheets]', 'placeholder' => '???']); $charges->append('br'); $charges->append('label', null, ['for' => 'ad-insertion[pu]'])->append('abbr', 'P/U', ['title' => 'Pick-Up']); $charges->append('input', null, ['type' => 'text', 'name' => 'ad-insertion[pu]', 'id' => 'ad-insertion[pu]', 'placeholder' => '???']); unset($charges); $info = $form->append('fieldset'); $info->append('legend', 'Ad Description & Info'); $info->append('br'); $info->append('textarea', null, ['name' => 'ad-insertion[info]', 'id' => 'ad-insertion[info]', 'placeholder' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec a diam lectus. Sed sit amet ipsum mauris. Maecenas congue ligula ac quam viverra nec consectetur ante hendrerit. Donec et mollis dolor. Praesent et diam eget libero egestas mattis sit amet vitae augue. Nam tincidunt congue enim, ut porta lorem lacinia consectetur. Donec ut libero sed arcu vehicula ultricies a non tortor.', 'required' => '']); $info->append('br'); $info->append('label', 'Attachments: ', ['for' => 'ad-insertion[attachments]']); $info->append('input', null, ['type' => 'file', 'name' => 'ad-insertion[attachments]', 'id' => 'ad-insertion[attachments]']); unset($info); $form->append('button', null, ['type' => 'submit', 'title' => 'Submit'])->import(DOM\SVG::useIcon('check', $size)); $form->append('button', null, ['type' => 'reset', 'title' => 'Reset'])->import(DOM\SVG::useIcon('x', $size)); $form->append('hr'); return $form; }