DragDropBuilder
1 month ago
EmailSettings
1 year ago
Membership
1 month ago
AbstractSettingsPage.php
2 years ago
AddNewForm.php
1 year ago
AdminFooter.php
4 years ago
ExtensionsSettingsPage.php
1 year ago
FormList.php
4 months ago
Forms.php
1 year ago
FuseWP.php
3 years ago
GeneralSettings.php
9 months ago
IDUserColumn.php
5 years ago
LicenseUpgrader.php
3 years ago
MailOptin.php
3 years ago
MemberDirectories.php
1 year ago
MembersDirectoryList.php
4 years ago
ToolsSettingsPage.php
4 years ago
index.php
3 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="' . esc_url(add_query_arg('view', 'add-new', PPRESS_MEMBER_DIRECTORIES_SETTINGS_PAGE)) . '">', |
| 12 | '</a>' |
| 13 | ); |
| 14 | } |
| 15 | } |