Skip to content

Commit

Permalink
Merge pull request #171 from funkedgeek/master
Browse files Browse the repository at this point in the history
Added URL field
  • Loading branch information
rilwis committed Nov 3, 2012
2 parents b701510 + 4a54c15 commit 69606fa
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions inc/fields/url.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<?php
// Prevent loading this file directly
defined( 'ABSPATH' ) || exit;

// Make sure "text" field is loaded
require_once RWMB_FIELDS_DIR . 'text.php';

if ( ! class_exists( 'RWMB_URL_Field' ) )
{
class RWMB_URL_Field
{
/**
* Get field HTML
*
* @param string $html
* @param mixed $meta
* @param array $field
*
* @return string
*/
static function html( $html, $meta, $field )
{
return sprintf(
'<input type="url" class="rwmb-url" name="%s" id="%s" value="%s" size="%s" />',
$field['field_name'],
$field['id'],
$meta,
$field['size']
);
}


/**
* Sanitizes url
*
* @param $post_id
* @param $field
* @param $old
* @param $new
*
* @return $new
*/
static function value( $new, $old, $post_id, $field)
{
$new = esc_url($new);
return $new;
}
}
}

0 comments on commit 69606fa

Please sign in to comment.