DragDropBuilder
5 years ago
EmailSettings
5 years ago
ShortcodeBuilder
5 years ago
AbstractSettingsPage.php
5 years ago
AddNewForm.php
5 years ago
AdminFooter.php
5 years ago
ExtensionsSettingsPage.php
5 years ago
FormList.php
5 years ago
Forms.php
5 years ago
GeneralSettings.php
5 years ago
IDUserColumn.php
5 years ago
MemberDirectories.php
5 years ago
MembersDirectoryList.php
5 years ago
ToolsSettingsPage.php
5 years ago
index.php
5 years ago
MembersDirectoryList.php
15 lines
| 1 | <?php |
| 2 | |
| 3 | namespace ProfilePress\Core\Admin\SettingsPages; |
| 4 | |
| 5 | class MembersDirectoryList extends FormList |
| 6 | { |
| 7 | public function no_items() |
| 8 | { |
| 9 | printf( |
| 10 | esc_html__('No members directory is currently available. %sConsider creating one%s', 'wp-user-avatar'), |
| 11 | '<a href="' . add_query_arg('view', 'add-new', PPRESS_MEMBER_DIRECTORIES_SETTINGS_PAGE) . '">', |
| 12 | '</a>' |
| 13 | ); |
| 14 | } |
| 15 | } |