PluginProbe ʕ •ᴥ•ʔ
External Links – nofollow, noopener & new window / 2.3
External Links – nofollow, noopener & new window v2.3
0.31 0.32 0.33 0.34 0.35 1.01 1.02 1.03 1.10 1.20 1.21 1.30 1.31 1.40 1.41 1.50 1.51 1.52 1.53 1.54 1.55 1.56 1.60 1.61 1.62 1.70 1.80 1.81 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.1.0 2.1.1 2.1.2 2.1.3 2.2.0 2.3 2.32 2.35 2.40 2.42 2.43 2.45 2.46 2.47 2.48 2.50 2.51 2.55 2.56 2.57 2.58 2.59 2.60 2.61 2.62 2.63 2.64 2.65 trunk 0.10 0.11 0.12 0.20 0.21 0.30
wp-external-links / includes / admin / settings-fields / class-wpel-excluded-link-fields.php
wp-external-links / includes / admin / settings-fields Last commit date
class-wpel-admin-fields.php 7 years ago class-wpel-exceptions-fields.php 7 years ago class-wpel-excluded-link-fields.php 7 years ago class-wpel-external-link-fields.php 7 years ago class-wpel-internal-link-fields.php 7 years ago class-wpel-link-fields-base.php 7 years ago
class-wpel-excluded-link-fields.php
41 lines
1 <?php
2 /**
3 * Class WPEL_Excluded_Link_Fields
4 *
5 * @package WPEL
6 * @category WordPress Plugin
7 * @version 2.3
8 * @link https://www.webfactoryltd.com/
9 * @license Dual licensed under the MIT and GPLv2+ licenses
10 */
11 final class WPEL_Excluded_Link_Fields extends WPEL_Link_Fields_Base
12 {
13
14 /**
15 * Initialize
16 */
17 protected function init()
18 {
19 $option_name = 'wpel-excluded-link-settings';
20 $fields = $this->get_general_fields( $option_name );
21
22 // change some specific field labels
23 $fields[ 'apply_settings' ][ 'label' ] = __( 'Settings for excluded links:', 'wp-external-links' );
24 $fields[ 'target' ][ 'label' ] = __( 'Open excluded links:', 'wp-external-links' );
25
26 $this->set_settings( array(
27 'section_id' => 'wpel-excluded-link-fields',
28 'page_id' => 'wpel-excluded-link-fields',
29 'option_name' => $option_name,
30 'option_group' => $option_name,
31 'title' => __( 'Excluded Links', 'wp-external-links' ),
32 'fields' => $fields,
33 ) );
34
35 parent::init();
36 }
37
38 }
39
40 /*?>*/
41