AdminNotices.php
5 years ago
AjaxHandler.php
5 years ago
Autologin.php
5 years ago
BuddyPressBbPress.php
5 years ago
EditUserProfile.php
5 years ago
ExtensionManager.php
5 years ago
FileUploader.php
5 years ago
FormPreviewHandler.php
5 years ago
FormRepository.php
5 years ago
FormShortcodeDefaults.php
5 years ago
GDPR.php
5 years ago
GlobalSiteAccess.php
5 years ago
ImageUploader.php
5 years ago
LoginAuth.php
5 years ago
Miscellaneous.php
5 years ago
ModifyRedirectDefaultLinks.php
5 years ago
PPRESS_Session.php
5 years ago
PROFILEPRESS_sql.php
5 years ago
PasswordReset.php
5 years ago
ProfileUrlRewrite.php
5 years ago
RegistrationAuth.php
5 years ago
SendEmail.php
5 years ago
ShortcodeThemeFactory.php
5 years ago
UserAvatar.php
5 years ago
UserSignupLocationListingPage.php
5 years ago
UsernameEmailRestrictLogin.php
5 years ago
WelcomeEmailAfterSignup.php
5 years ago
default-email-template.php
5 years ago
index.php
5 years ago
Miscellaneous.php
34 lines
| 1 | <?php namespace ProfilePress\Core\Classes; |
| 2 | |
| 3 | namespace ProfilePress\Core\Classes; |
| 4 | |
| 5 | class Miscellaneous |
| 6 | { |
| 7 | public function __construct() |
| 8 | { |
| 9 | $basename = plugin_basename(PROFILEPRESS_SYSTEM_FILE_PATH); |
| 10 | $prefix = is_network_admin() ? 'network_admin_' : ''; |
| 11 | add_filter("{$prefix}plugin_action_links_$basename", [$this, 'action_links'], 10, 4); |
| 12 | } |
| 13 | |
| 14 | public function action_links($actions, $plugin_file, $plugin_data, $context) |
| 15 | { |
| 16 | $custom_actions = array( |
| 17 | 'settings' => sprintf('<a href="%s">%s</a>', PPRESS_SETTINGS_SETTING_PAGE, esc_html__('Settings', 'wp-user-avatar')), |
| 18 | ); |
| 19 | |
| 20 | // add the links to the front of the actions list |
| 21 | return array_merge($custom_actions, $actions); |
| 22 | } |
| 23 | |
| 24 | public static function get_instance() |
| 25 | { |
| 26 | static $instance = null; |
| 27 | |
| 28 | if (is_null($instance)) { |
| 29 | $instance = new self(); |
| 30 | } |
| 31 | |
| 32 | return $instance; |
| 33 | } |
| 34 | } |