Changeset 2390:3b3d86f3529a for plugins/pages
- Timestamp:
- 10/16/13 20:58:46 (12 years ago)
- Branch:
- 2.6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/pages/page.php
r2314 r2390 390 390 'items' => array( 391 391 'post_status' => 392 '<p><label for="post_status" class="ib">'.__('Page status').'</label> '.392 '<p><label for="post_status">'.__('Page status').'</label> '. 393 393 form::combo('post_status',$status_combo,$post_status,'','',!$can_publish). 394 394 '</p>', 395 395 'post_dt' => 396 '<p><label for="post_dt" class="ib">'.__('Publication date and hour').'</label>'.396 '<p><label for="post_dt">'.__('Publication date and hour').'</label>'. 397 397 form::field('post_dt',16,16,$post_dt,($bad_dt ? 'invalid' : '')). 398 398 '</p>', 399 399 'post_lang' => 400 '<p><label for="post_lang" class="ib">'.__('Page language').'</label>'.400 '<p><label for="post_lang">'.__('Page language').'</label>'. 401 401 form::combo('post_lang',$lang_combo,$post_lang). 402 402 '</p>', 403 403 'post_format' => 404 404 '<div>'. 405 '<h5 id="label_format"><label for="post_format" class=" ib">'.__('Text formatting').'</label></h5>'.405 '<h5 id="label_format"><label for="post_format" class="classic">'.__('Text formatting').'</label></h5>'. 406 406 '<p>'.form::combo('post_format',$formaters_combo,$post_format,'maximal'). 407 407 '</p>'. … … 447 447 '</p>', 448 448 'post_password' => 449 '<p><label for="post_password" class="ib">'.__('Password').'</label>'.449 '<p><label for="post_password">'.__('Password').'</label>'. 450 450 form::field('post_password',10,32,html::escapeHTML($post_password),'maximal'). 451 451 '</p>', 452 452 'post_url' => 453 453 '<div class="lockable">'. 454 '<p><label for="post_url" class="ib">'.__('Edit basename').'</label>'.454 '<p><label for="post_url">'.__('Edit basename').'</label>'. 455 455 form::field('post_url',10,255,html::escapeHTML($post_url),'maximal'). 456 456 '</p>'. … … 462 462 "post_title" => 463 463 '<p class="col">'. 464 '<label class="required no-margin "><abbr title="'.__('Required field').'">*</abbr> '.__('Title:').'</label>'.464 '<label class="required no-margin bold"><abbr title="'.__('Required field').'">*</abbr> '.__('Title:').'</label>'. 465 465 form::field('post_title',20,255,html::escapeHTML($post_title),'maximal'). 466 466 '</p>', 467 467 468 468 "post_excerpt" => 469 '<p class="area" id="excerpt-area"><label for="post_excerpt" >'.__('Excerpt:').' <span class="form-note">'.469 '<p class="area" id="excerpt-area"><label for="post_excerpt" class="bold">'.__('Excerpt:').' <span class="form-note">'. 470 470 __('Introduction to the page.').'</span></label> '. 471 471 form::textarea('post_excerpt',50,5,html::escapeHTML($post_excerpt)). … … 473 473 474 474 "post_content" => 475 '<p class="area" id="content-area"><label class="required " '.475 '<p class="area" id="content-area"><label class="required bold" '. 476 476 'for="post_content"><abbr title="'.__('Required field').'">*</abbr> '.__('Content:').'</label> '. 477 477 form::textarea('post_content',50,$core->auth->getOption('edit_size'),html::escapeHTML($post_content)). … … 479 479 480 480 "post_notes" => 481 '<p class="area" id="notes-area"><label for="post_notes" >'.__('Personal notes:').' <span class="form-note">'.481 '<p class="area" id="notes-area"><label for="post_notes" class="bold">'.__('Personal notes:').' <span class="form-note">'. 482 482 __('Unpublished notes.').'</span></label>'. 483 483 form::textarea('post_notes',50,5,html::escapeHTML($post_notes)).
Note: See TracChangeset
for help on using the changeset viewer.