|
@@ 247-254 (lines=8) @@
|
| 244 |
|
* |
| 245 |
|
* @return array |
| 246 |
|
*/ |
| 247 |
|
private function entries_pointer() { |
| 248 |
|
return array( |
| 249 |
|
'content' => '<h3>' . __( 'Entries', 'formidable' ) . '</h3>' |
| 250 |
|
. '<p>' . __( 'Each time one of your forms is submitted, an entry is created. You will find every form submission listed here so you will always have a backup if an email fails.', 'formidable' ) . '</p>', |
| 251 |
|
'prev_page' => '', |
| 252 |
|
'next_page' => 'styles', |
| 253 |
|
); |
| 254 |
|
} |
| 255 |
|
|
| 256 |
|
/** |
| 257 |
|
* Returns the content of the Styles page pointer |
|
@@ 261-268 (lines=8) @@
|
| 258 |
|
* |
| 259 |
|
* @return array |
| 260 |
|
*/ |
| 261 |
|
private function styles_pointer() { |
| 262 |
|
return array( |
| 263 |
|
'content' => '<h3>' . __( 'Styles', 'formidable' ) . '</h3>' |
| 264 |
|
. '<p>' . __( 'Want to make changes to the way your forms look? Make all the changes you would like right here, and watch the sample form change before your eyes.', 'formidable' ) . '</p>', |
| 265 |
|
'prev_page' => 'entries', |
| 266 |
|
'next_page' => 'import', |
| 267 |
|
); |
| 268 |
|
} |
| 269 |
|
|
| 270 |
|
/** |
| 271 |
|
* Returns the content of the Import/Export page pointer |
|
@@ 275-282 (lines=8) @@
|
| 272 |
|
* |
| 273 |
|
* @return array |
| 274 |
|
*/ |
| 275 |
|
private function import_pointer() { |
| 276 |
|
return array( |
| 277 |
|
'content' => '<h3>' . __( 'Import/Export', 'formidable' ) . '</h3>' |
| 278 |
|
. '<p>' . __( 'Import and export forms and styles when copying from one site to another or sharing with someone else. Your entries can be exported to a CSV as well. The Premium version also includes the option to import entries to your site from a CSV.', 'formidable' ) . '</p>', |
| 279 |
|
'prev_page' => 'styles', |
| 280 |
|
'next_page' => 'settings', |
| 281 |
|
); |
| 282 |
|
} |
| 283 |
|
|
| 284 |
|
/** |
| 285 |
|
* Returns the content of the advanced page pointer |