PluginProbe
Texty – SMS Notification for WordPress, WooCommerce, Dokan and more / 2.0.0
Texty – SMS Notification for WordPress, WooCommerce, Dokan and more v2.0.0
2.0.2 trunk 0.2 1.0 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 2.0.0 2.0.1
texty / includes / Admin / Profile.php

Profile.php in Texty – SMS Notification for WordPress, WooCommerce, Dokan and more 2.0.0, at includes/Admin/Profile.php

30 lines 515 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Texty\Admin;
4
5 /**
6 * Profile Class
7 */
8 class Profile {
9
10 /**
11 * Initialize
12 */
13 public function __construct() {
14 add_filter( 'user_contactmethods', [ $this, 'add_contact_methods' ], 8 );
15 }
16
17 /**
18 * Add phone number as contact method
19 *
20 * @param array $methods
21 *
22 * @return array
23 */
24 public function add_contact_methods( $methods ) {
25 $methods['texty_phone'] = __( 'Phone Number (Texty)', 'texty' );
26
27 return $methods;
28 }
29 }
30