condition-author.php
1 year ago
condition-device.php
1 year ago
condition-is-or-not.php
1 year ago
condition-number.php
3 years ago
condition-operator.php
1 year ago
condition-string.php
2 years ago
conditions-form.php
5 months ago
display-conditions-list.php
1 year ago
no-option.php
1 year ago
not-selected.php
4 years ago
visitor-conditions-list.php
1 year ago
condition-string.php
12 lines
| 1 | <input type="hidden" name="<?php echo esc_attr( $name ); ?>[type]" value="<?php echo esc_attr( $options['type'] ); ?>"/> |
| 2 | <div class="advads-condition-line-wrap"> |
| 3 | <?php include ADVADS_ABSPATH . 'admin/views/ad-conditions-string-operators.php'; ?> |
| 4 | <input type="text" name="<?php echo esc_attr( $name ); ?>[value]" value="<?php echo esc_attr( $value ); ?>"/> |
| 5 | </div> |
| 6 | <p class="description"> |
| 7 | <?php echo esc_html( $type_options[ $options['type'] ]['description'] ); ?> |
| 8 | <?php if ( isset( $type_options[ $options['type'] ]['helplink'] ) ) : ?> |
| 9 | <a href="<?php echo esc_url( $type_options[ $options['type'] ]['helplink'] ); ?>" class="advads-manual-link" target="_blank"><?php esc_html_e( 'Manual', 'advanced-ads' ); ?></a> |
| 10 | <?php endif; ?> |
| 11 | </p> |
| 12 |