__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace WPForms\Helpers;
/**
* Helper to handle folder path parsing and processing.
*
* @since 1.10.0
*/
class PathParser {
/**
* Split the folder path by "/" while preserving smart tags intact.
*
* Smart tags like {entry_date format="d/m/Y"} contain "/" in attributes
* which should not be treated as path separators.
*
* Examples:
* - /uploads/wpforms/tmp
* - /uploads/wpforms/{date format="d/m/Y"}
* - /uploads/wpforms/{entry_date format="d-m-Y"}
*
* @since 1.10.0
*
* @param string $folder_path Folder path with forward slashes.
*
* @return array Array of folder path parts with smart tags preserved.
*/
public static function split_folder( string $folder_path ): array {
$parts = [];
$current_part = '';
$inside_braces = 0;
$length = strlen( $folder_path );
for ( $i = 0; $i < $length; $i++ ) {
$char = $folder_path[ $i ];
if ( $char === '{' ) {
++$inside_braces;
} elseif ( $char === '}' ) {
--$inside_braces;
}
if ( $char === '/' && $inside_braces === 0 ) {
$trimmed = trim( $current_part );
if ( ! wpforms_is_empty_string( $trimmed ) ) {
$parts[] = $trimmed;
}
$current_part = '';
continue;
}
$current_part .= $char;
}
$trimmed = trim( $current_part );
if ( ! wpforms_is_empty_string( $trimmed ) ) {
$parts[] = $trimmed;
}
return $parts;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| CacheBase.php | File | 11.06 KB | 0775 |
|
| Chain.php | File | 8.3 KB | 0775 |
|
| Crypto.php | File | 2.86 KB | 0775 |
|
| DB.php | File | 6.59 KB | 0775 |
|
| File.php | File | 8.27 KB | 0775 |
|
| Form.php | File | 1.4 KB | 0775 |
|
| PathParser.php | File | 1.37 KB | 0775 |
|
| PluginSilentUpgrader.php | File | 23.29 KB | 0775 |
|
| Templates.php | File | 6.26 KB | 0775 |
|
| Transient.php | File | 7.34 KB | 0775 |
|