_comment.php
2 years ago
_db.php
2 years ago
_hidden.php
2 years ago
_label.php
1 year ago
_row.php
2 years ago
attachment.php
1 year ago
checkbox.php
1 year ago
cleditor.php
2 years ago
codemirror.php
2 years ago
color.php
2 years ago
currency.php
1 year ago
date.php
2 years ago
datetime.php
2 years ago
email.php
1 year ago
link.php
1 year ago
number.php
1 year ago
oembed.php
1 year ago
password.php
1 year ago
phone.php
1 year ago
radio.php
1 year ago
select.php
1 year ago
slider.php
1 year ago
slug.php
2 years ago
text.php
1 year ago
textarea.php
1 year ago
time.php
2 years ago
tinymce.php
1 year ago
website.php
2 years ago
_label.php
20 lines
| 1 | <?php |
| 2 | // Don't load directly. |
| 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | die( '-1' ); |
| 5 | } |
| 6 | ?> |
| 7 | <label<?php PodsForm::attributes( $attributes, $name, 'label' ); ?>> |
| 8 | <?php |
| 9 | echo pods_kses_exclude_p( $label ); |
| 10 | |
| 11 | if ( 1 == pods_v( 'required', $options, pods_v( 'options', $options, $options ) ) ) { |
| 12 | echo ' <abbr title="required" class="required">*</abbr>'; |
| 13 | } |
| 14 | |
| 15 | if ( 0 === (int) pods_v( 'grouped', $options ) && ! empty( $help ) && __( 'help', 'pods' ) !== $help ) { |
| 16 | pods_help( $help ); |
| 17 | } |
| 18 | ?> |
| 19 | </label> |
| 20 |