| Server IP : 38.190.208.107 / Your IP : 216.73.217.46 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.9/wp-content/themes/woodmart/inc/modules/header-builder/ |
Upload File : |
<?php
/**
* Headers list class file.
*
* @package woodmart
*/
namespace XTS\Modules\Header_Builder;
/**
* Manage headers lists in the database. CRUD operations.
*/
class Headers_List {
/**
* Set default header.
*
* @param integer $id Header ID.
*
* @return void
*/
public function set_default( $id ) {
update_option( 'whb_main_header', $id );
}
/**
* Get default header.
*
* @return integer
*/
public function get_default() {
$id = get_option( 'whb_main_header' );
if ( ! $id ) {
$id = WOODMART_HB_DEFAULT_ID;
}
return $id;
}
/**
* Get all headers.
*
* @return array
*/
public function get_all() {
$default_id = WOODMART_HB_DEFAULT_ID;
$list = array(
$default_id => array(
'id' => WOODMART_HB_DEFAULT_ID,
'name' => WOODMART_HB_DEFAULT_NAME,
),
);
$header = get_option( 'whb_' . $default_id );
if ( isset( $header['name'] ) ) {
$list[ $default_id ]['name'] = $header['name'];
}
$saved_headers = get_option( 'whb_saved_headers' );
if ( ! empty( $saved_headers ) && is_array( $saved_headers ) ) {
$list = array_merge( $list, $saved_headers );
}
return $list;
}
/**
* Add new header.
*
* @param integer $id Header ID.
* @param string $name Header name.
*
* @return array|array[]
*/
public function add_header( $id = false, $name = false ) {
$list = $this->get_all();
$list[ $id ] = array(
'id' => $id,
'name' => $name,
);
update_option( 'whb_saved_headers', $list );
return $list;
}
/**
* Remove header.
*
* @param integer $id Header ID.
*
* @return array|array[]
*/
public function remove( $id ) {
$list = $this->get_all();
if ( isset( $list[ $id ] ) ) {
unset( $list[ $id ] );
}
update_option( 'whb_saved_headers', $list );
return $list;
}
/**
* Get example headers config.
*
* @return mixed
*/
public function get_examples() {
return woodmart_get_config( 'header-examples' );
}
}