account-status-connected.php
5 months ago
account-status-create-advanced.php
5 months ago
account-status-create-simple.php
5 months ago
account-status-loading.php
3 years ago
bulk-optimization-form.php
5 months ago
bulk-optimization-upgrade-notice.php
5 months ago
bulk-optimization.php
2 months ago
compress-details-processing.php
5 months ago
compress-details.php
5 months ago
dashboard-widget.php
2 months ago
notice-feedback.php
2 months ago
optimization-chart.php
5 months ago
request-review.php
2 months ago
settings-conversion-delivery.php
2 months ago
settings-conversion-enabled.php
2 months ago
settings-conversion-output.php
2 months ago
settings-conversion.php
2 months ago
settings-diagnostics.php
5 months ago
settings-original-image-original.php
2 months ago
settings-original-image-preserve.php
2 months ago
settings-original-image.php
2 months ago
settings.php
2 months ago
settings-conversion-delivery.php
43 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Conversion delivery view |
| 5 | * |
| 6 | * @package tiny-compress-images |
| 7 | */ |
| 8 | |
| 9 | if ( ! defined( 'ABSPATH' ) ) { |
| 10 | exit; // Exit if accessed directly. |
| 11 | } |
| 12 | $tinify_delivery_name = self::get_prefixed_name( 'convert_format[delivery_method]' ); |
| 13 | |
| 14 | $tinify_delivery_option_picture = self::get_prefixed_name( 'convert_delivery_picture' ); |
| 15 | $tinify_delivery_option_htaccess = self::get_prefixed_name( 'convert_delivery_htaccess' ); |
| 16 | |
| 17 | $tinify_delivery_value = self::get_conversion_delivery_method(); |
| 18 | ?> |
| 19 | |
| 20 | <h4><?php esc_html_e( 'Conversion delivery', 'tiny-compress-images' ); ?></h4> |
| 21 | |
| 22 | <?php |
| 23 | $this::render_radiobutton( |
| 24 | $tinify_delivery_name, |
| 25 | $tinify_delivery_option_htaccess, |
| 26 | 'htaccess', |
| 27 | $tinify_delivery_value, |
| 28 | 'Server rules (recommended)', |
| 29 | 'Adds htaccess rules to deliver the optimized image.' |
| 30 | ); |
| 31 | ?> |
| 32 | |
| 33 | <?php |
| 34 | $this::render_radiobutton( |
| 35 | $tinify_delivery_name, |
| 36 | $tinify_delivery_option_picture, |
| 37 | 'picture', |
| 38 | $tinify_delivery_value, |
| 39 | 'Picture element', |
| 40 | 'Uses HTML <picture> tags with multiple <source> elements.' |
| 41 | ); |
| 42 | ?> |
| 43 |