|
197 | 197 | 'title_format' => 'notes-string', |
198 | 198 | 'exclude_statuses' => $exclude_statuses, |
199 | 199 | ) ); |
200 | | - $Form->info( T_('Default status'), $default_status_field, T_('Default status for new posts by anonymous users.') ); |
| 200 | + $Form->info( T_('Default status for new posts in backoffice'), $default_status_field, T_('Typically Draft if you want to make sure you don\'t publish by mistake.') ); |
201 | 201 | $Form->hidden( 'default_post_status', $edited_Blog->get_setting('default_post_status') ); |
| 202 | + $default_status_field_anon = get_status_dropdown_button( array( |
| 203 | + 'name' => 'default_post_status_anon', |
| 204 | + 'value' => $edited_Blog->get_setting( 'default_post_status_anon' ), |
| 205 | + 'title_format' => 'notes-string', |
| 206 | + 'exclude_statuses' => $exclude_statuses, |
| 207 | + ) ); |
| 208 | + $Form->info( T_('Default status for new anonymous posts'), $default_status_field_anon, T_('Typically Review if you want to prevent Spam.') ); |
| 209 | + $Form->hidden( 'default_post_status_anon', $edited_Blog->get_setting( 'default_post_status_anon' ) ); |
202 | 210 | echo_form_dropdown_js(); |
203 | 211 | } |
204 | 212 | else |
205 | 213 | { // Use standard select element for other skins: |
206 | | - $Form->select_input_array( 'default_post_status', $edited_Blog->get_setting('default_post_status'), get_visibility_statuses( 'notes-string', $exclude_statuses ), T_('Default status'), T_('Default status for new posts') ); |
| 214 | + $Form->select_input_array( 'default_post_status', $edited_Blog->get_setting( 'default_post_status' ), get_visibility_statuses( 'notes-string', $exclude_statuses ), T_('Default status for new posts in backoffice'), T_('Typically Draft if you want to make sure you don\'t publish by mistake.') ); |
| 215 | + $Form->select_input_array( 'default_post_status_anon', $edited_Blog->get_setting( 'default_post_status_anon' ), get_visibility_statuses( 'notes-string', $exclude_statuses ), T_('Default status for new anonymous posts'), T_('Typically Review if you want to prevent Spam.') ); |
207 | 216 | } |
208 | 217 |
|
209 | 218 | // Moderation statuses setting: |
|
0 commit comments