19 lines
466 B
PHP
19 lines
466 B
PHP
<?php
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
} // Exit if accessed directly
|
|
|
|
if ( ! class_exists( 'conv_protection_txt_settings' ) ) {
|
|
|
|
class conv_protection_txt_settings{
|
|
|
|
const ALERT_TEXT = 'このコンテンツはパスワードで保護されています。閲覧するには以下にパスワードを入力してください。';
|
|
const BTN_LABEL = 'パスワード';
|
|
const BTN_TEXT = '確定';
|
|
const TEMPLATE_DIR = __DIR__ . '/../template/';
|
|
|
|
}
|
|
|
|
}
|