class-url.php
<?php
namespace HivePress\Fields;
use HivePress\Helpers as hp;
defined( 'ABSPATH' ) || exit;
class URL extends Text {
public static function init( $meta = [] ) {
$meta = hp\merge_arrays(
[
'label' => esc_html__( 'URL', 'hivepress' ),
'filterable' => false,
'sortable' => false,
'settings' => [
'min_length' => null,
'max_length' => null,
'pattern' => null,
],
],
$meta
);
parent::init( $meta );
}
public function __construct( $args = [] ) {
$args = hp\merge_arrays(
$args,
[
'max_length' => 2048,
]
);
parent::__construct( $args );
}
protected function set_display_template( $display_template ) {
if ( strpos( $display_template, '<a ' ) === false && ! hp\has_shortcode( $display_template ) ) {
$display_template = str_replace( '%value%', '<a href="%value%">%value%</a>', $display_template );
}
$this->display_template = $display_template;
}
protected function sanitize() {
$this->value = esc_url_raw( $this->value );
}
}