🚚📝 - Réorganisation des fichiers et ajout de documentation pour les fonctions existantes

This commit is contained in:
2025-02-05 01:03:46 +01:00
parent e67d1f86d7
commit a0b5f2033f
2 changed files with 36 additions and 10 deletions

View File

@@ -0,0 +1,26 @@
<?php
// Add some functions to quickly load template
/**
* Loads the appropriate topbar template file.
*
* @param string|null $name Optional. The specific topbar name to load.
* @param array $args Optional. Additional arguments to pass to the template.
* @return bool True if the template was found and loaded, false otherwise.
*/
function tree_get_topbar($name = null, $args = array()) {
do_action("get_topbar", $name, $args);
$templates = array();
$name = (string) $name;
if ( '' !== $name ) {
$templates[] = "topbar-{$name}.php";
}
$templates[] = 'topbar.php';
if ( ! locate_template( $templates, true, true, $args ) ) {
return false;
}
}

View File

@@ -0,0 +1,61 @@
<?php
/**
* Merges multiple arrays recursively without duplicating scalar values for numeric keys
* and overriding values for associative keys.
*
* @param array ...$arrays Arrays to be merged.
* @return array The resulting merged array.
*/
function array_merge_recursive_distinct(array ...$arrays): array {
$merged = [];
foreach ($arrays as $array) {
foreach ($array as $key => $value) {
if (is_array($value) && array_key_exists($key, $merged) && is_array($merged[$key])) {
// Appel récursif pour fusionner les tableaux enfants
$merged[$key] = array_merge_recursive_distinct($merged[$key], $value);
} elseif (is_array($value) && !array_key_exists($key, $merged)) {
// Ajouter les nouveaux tableaux si la clé n'existe pas encore
$merged[$key] = $value;
} elseif (!is_array($value)) {
if (is_int($key)) {
// Ajouter une valeur unique dans les clés numériques
if (!in_array($value, $merged, true)) {
$merged[] = $value;
}
} else {
// Écraser pour les clés associatives
$merged[$key] = $value;
}
}
}
}
return $merged;
}
/**
* Checks if a directory is empty.
*
* @param string $dir Path to the directory to check.
* @return bool True if the directory is empty, false otherwise.
*/
function is_dir_empty($dir): bool {
return (count(scandir($dir)) == 2);
}
/**
* Retrieves the URL of the blog archive for the specified blog ID.
*
* @param int|null $blog_id The ID of the blog. If null, uses the current blog ID.
* @return string The URL of the blog archive.
*/
function get_blog_url($blog_id = null) {
if (null === $blog_id) $blog_id = get_current_blog_id();
if (get_current_blog_id() !== $blog_id && get_blogaddress_by_id($blog_id)) switch_to_blog($blog_id);
return get_post_type_archive_link( 'post' );
}