PATH:
home
/
thebhoeo
/
.trash
/
backwpup
/
components
/
containers
<?php use BackWPup\Utils\BackWPupHelpers; if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Sidebar container * @var string $is_in_form Set to true if the sidebar is in a form. Default: false. */ #Default values $is_in_form = $is_in_form ?? false; $base_path = untrailingslashit( BackWPup::get_plugin_data( 'plugindir' ) ); $files = glob( $base_path . '/parts/sidebar/*' ); if ( BackWPup::is_pro() ) { $files_pro = glob( $base_path . '/pro/parts/sidebar/*' ); $files = array_merge( $files, $files_pro ); } ?> <aside id="backwpup-sidebar" class="fixed z-[100000] top-0 right-0 bottom-0 w-[410px] p-6 flex flex-col gap-4 rounded-l-lg bg-white shadow-xl translate-x-[450px] transition-transform duration-500 ease-out backwpup-typography"> <?php # Get all files in the parts/sidebar directory foreach ( $files as $file ) { if ( ! is_file( $file ) ) { continue; } // Unset $job_id before each include to prevent scope pollution between sidebar files. unset( $job_id ); $filename = pathinfo( $file, PATHINFO_FILENAME ); ?> <article class="flex flex-col flex-auto gap-4" id="sidebar-<?php echo esc_attr( $filename) ?>"> <?php include $file; ?> </article> <?php } ?> </aside>
[-] scrollable-end.php
[edit]
[-] accordion.php
[edit]
[-] white-box.php
[edit]
[-] modal.php
[edit]
[-] sidebar.php
[edit]
[-] form-start.php
[edit]
[-] grey-box.php
[edit]
[+]
..
[-] max-screen.php
[edit]
[-] scrollable-start.php
[edit]
[-] form-end.php
[edit]
[-] green-box.php
[edit]