??????????????
??????????????
??????????????
??????????????
Warning : Undefined variable $auth in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
Warning : Trying to access array offset on value of type null in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
??????????????
??????????????
??????????????
??????????????
File Manager
✏️ Edit File: /home/mklsvubc/netecfwd.co.uk/wp-content/plugins/wpforms-lite/src/Helpers/PathParser.php
⬅ Kembali
<?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;
}
}
Nama
Tipe
Ukuran
Diubah
Aksi
🐘 CacheBase.php
php
11.1 KB
2026-06-19 06:58
🐘 Chain.php
php
8.3 KB
2026-06-19 06:58
🐘 Crypto.php
php
2.9 KB
2026-06-19 06:58
🐘 DB.php
php
6.6 KB
2026-06-19 06:58
🐘 File.php
php
8.3 KB
2026-06-19 06:58
🐘 Form.php
php
1.9 KB
2026-06-19 06:58
🐘 PathParser.php
php
1.4 KB
2026-06-19 06:58
🐘 PluginSilentUpgrader.php
php
23.3 KB
2026-06-19 06:58
🐘 Templates.php
php
6.3 KB
2026-06-19 06:58
🐘 Transient.php
php
7.3 KB
2026-06-19 06:58