__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace CarouselSlider;
use CarouselSlider\Supports\Validate;
defined( 'ABSPATH' ) || exit;
/**
* ViewHelper class
*/
class ViewHelper {
/**
* Array to style
*
* @param array $styles The styles array.
*
* @return string
*/
public static function array_to_style( array $styles ): string {
$_styles = [];
foreach ( $styles as $key => $value ) {
if ( ! is_string( $key ) || empty( $value ) ) {
continue;
}
$_styles[] = sprintf( '%s:%s', $key, esc_attr( $value ) );
}
return implode( ';', $_styles );
}
/**
* Convert array to html data attribute
*
* @param array $attributes The attributes list.
*
* @return array
*/
public static function array_to_attribute( array $attributes ): array {
return array_map(
function ( $key, $value ) {
// If boolean value.
if ( is_bool( $value ) ) {
return sprintf( '%s="%s"', $key, ( $value ? 'true' : 'false' ) );
}
// If array value.
if ( is_array( $value ) ) {
return sprintf( '%s="%s"', $key, implode( ' ', $value ) );
}
if ( is_string( $value ) && Validate::json( $value ) ) {
return sprintf( "%s='%s'", $key, $value );
}
// If string value.
return sprintf( '%s="%s"', $key, esc_attr( $value ) );
},
array_keys( $attributes ),
array_values( $attributes )
);
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Abstracts | Folder | 0775 |
|
|
| Admin | Folder | 0775 |
|
|
| CLI | Folder | 0775 |
|
|
| Frontend | Folder | 0775 |
|
|
| Integration | Folder | 0775 |
|
|
| Interfaces | Folder | 0775 |
|
|
| REST | Folder | 0775 |
|
|
| Supports | Folder | 0775 |
|
|
| Traits | Folder | 0775 |
|
|
| Widget | Folder | 0775 |
|
|
| Ajax.php | File | 874 B | 0775 |
|
| Api.php | File | 4.58 KB | 0775 |
|
| Assets.php | File | 5.68 KB | 0775 |
|
| Autoloader.php | File | 4.03 KB | 0775 |
|
| Helper.php | File | 13.88 KB | 0775 |
|
| Plugin.php | File | 7.41 KB | 0775 |
|
| TemplateParserBase.php | File | 4.85 KB | 0775 |
|
| TrackingData.php | File | 6.85 KB | 0775 |
|
| ViewHelper.php | File | 1.31 KB | 0775 |
|