PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins
/
sf-booking
/
frontend
/
modules
/
myaccount
/
library
<?php /***************************************************************************** * * copyright(c) - aonetheme.com - Service Finder Team * More Info: http://aonetheme.com/ * Coder: Service Finder Team * Email: contact@aonetheme.com * ******************************************************************************/ defined( 'ABSPATH' ) || exit; // Make sure "text" field is loaded require_once SERVICE_FINDER_BOOKING_FRONTEND_MODULE_DIR . '/myaccount/library/manage-text.php'; if ( ! class_exists( 'ClassURL' ) ) { class ClassURL extends ClassText { /** * Get field HTML * * @param mixed $meta * @param array $field * * @return string */ static function html( $meta, $field ) { return sprintf( '<input type="url" class="rwmb-url" name="%s" id="%s" value="%s" size="%s" placeholder="%s"/>', $field['field_name'], $field['id'], $meta, $field['size'], $field['placeholder'] ); } /** * Sanitize url * * @param mixed $new * @param mixed $old * @param int $post_id * @param array $field * * @return string */ static function value( $new, $old, $post_id, $field ) { return is_array( $new ) ? array_map( 'esc_url', $new ) : esc_url( $new ); } } }
[+]
..
[-] embeded.php
[edit]
[-] manage-text.php
[edit]
[-] imageupload.php
[edit]
[-] image-manager.php
[edit]
[-] outerarea.php
[edit]
[-] manage-urls.php
[edit]
[-] managefiles.php
[edit]