<?php
if ( ! class_exists( 'Jet_Theme_Core_Structure_Archive' ) ) {
/**
* Define Jet_Theme_Core_Structure_Archive class
*/
class Jet_Theme_Core_Structure_Archive extends Jet_Theme_Core_Structure_Base {
public function get_id() {
return 'jet_archive';
}
public function get_single_label() {
return esc_html__( 'Archive', 'jet-theme-core' );
}
public function get_plural_label() {
return esc_html__( 'Archives', 'jet-theme-core' );
}
public function get_sources() {
return array( 'jet-theme', 'jet-api' );
}
public function get_document_type() {
return array(
'class' => 'Jet_Archive_Document',
'file' => jet_theme_core()->plugin_path( 'includes/document-types/archive.php' ),
);
}
/**
* Is current structure could be outputed as location
*
* @return boolean
*/
public function is_location() {
return true;
}
/**
* Location name
*
* @return boolean
*/
public function location_name() {
return 'archive';
}
/**
* Aproprite location name from Elementor Pro
* @return [type] [description]
*/
public function pro_location_mapping() {
return 'archive';
}
/**
* Library settings for current structure
*
* @return void
*/
public function library_settings() {
return array(
'show_title' => false,
'show_keywords' => true,
);
}
}
}