77 lines
1.7 KiB
PHP
77 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace AutomateWoo;
|
|
|
|
use AutomateWoo\Notifications\BitlyCheck;
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
/**
|
|
* Settings_Tab_Bitly class.
|
|
*/
|
|
class Settings_Tab_Bitly extends Admin_Settings_Tab_Abstract {
|
|
|
|
/**
|
|
* Constructor.
|
|
*/
|
|
public function __construct() {
|
|
$this->id = 'bitly';
|
|
$this->name = __( 'Bitly', 'automatewoo' );
|
|
$this->show_tab_title = false;
|
|
}
|
|
|
|
/**
|
|
* Load tab settings.
|
|
*/
|
|
public function load_settings() {
|
|
|
|
$this->section_start(
|
|
'bitly',
|
|
__( 'Bitly', 'automatewoo' ),
|
|
sprintf(
|
|
/* translators: %1$s: opening link tag, %2$s: closing link tag */
|
|
__( 'Integrating with Bitly allows you to shorten links in your SMS messages. Create a free account at <%1$s>bitly.com<%2$s>.', 'automatewoo' ),
|
|
'a href="https://bitly.com/"',
|
|
'/a'
|
|
)
|
|
);
|
|
|
|
$this->add_setting(
|
|
'bitly_api',
|
|
[
|
|
'type' => 'password',
|
|
'title' => __( 'Generic Access Token', 'automatewoo' ),
|
|
'desc_tip' => __( 'Find your Generic Access Token in your Bitly account area under Your Account > Edit Profile.', 'automatewoo' ),
|
|
]
|
|
);
|
|
|
|
$this->add_setting(
|
|
'bitly_shorten_sms_links',
|
|
[
|
|
'type' => 'checkbox',
|
|
'title' => __( 'Shorten all SMS links', 'automatewoo' ),
|
|
]
|
|
);
|
|
|
|
$this->section_end( 'bitly' );
|
|
}
|
|
|
|
/**
|
|
* Save settings.
|
|
*
|
|
* @param array $fields Which fields to save. If empty, all fields will be saved.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function save( $fields = array() ): void {
|
|
parent::save( $fields );
|
|
|
|
$bitly = Integrations::get_bitly();
|
|
if ( $bitly && $bitly->test_integration() ) {
|
|
// If a notification exists relating to a Bitly integration error, delete it.
|
|
BitlyCheck::possibly_delete_note();
|
|
}
|
|
}
|
|
}
|
|
|
|
return new Settings_Tab_Bitly();
|