/** * WIDGET component. * * @package Astra Builder * @author Brainstorm Force * @copyright Copyright (c) 2020, Brainstorm Force * @link https://www.brainstormforce.com * @since Astra 3.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } define( 'ASTRA_BUILDER_HEADER_WIDGET_DIR', ASTRA_THEME_DIR . 'inc/builder/type/header/widget' ); define( 'ASTRA_BUILDER_HEADER_WIDGET_URI', ASTRA_THEME_URI . 'inc/builder/type/header/widget' ); /** * Heading Initial Setup * * @since 3.0.0 */ class Astra_Header_Widget_Component { /** * Constructor function that initializes required actions and hooks */ public function __construct() { // @codingStandardsIgnoreStart WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound require_once ASTRA_BUILDER_HEADER_WIDGET_DIR . '/class-astra-header-widget-component-loader.php'; // Include front end files. if ( ! is_admin() || Astra_Builder_Customizer::astra_collect_customizer_builder_data() ) { require_once ASTRA_BUILDER_HEADER_WIDGET_DIR . '/dynamic-css/dynamic.css.php'; } // @codingStandardsIgnoreEnd WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound } } /** * Kicking this off by creating an object. */ new Astra_Header_Widget_Component();/** * WIDGET Styling Loader for Astra theme. * * @package Astra Builder * @author Brainstorm Force * @copyright Copyright (c) 2020, Brainstorm Force * @link https://www.brainstormforce.com * @since Astra 3.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Customizer Initialization * * @since 3.0.0 */ class Astra_Footer_Widget_Component_Loader { /** * Constructor * * @since 3.0.0 */ public function __construct() { add_action( 'customize_preview_init', array( $this, 'preview_scripts' ), 110 ); } /** * Customizer Preview * * @since 3.0.0 */ public function preview_scripts() { /** * Load unminified if SCRIPT_DEBUG is true. */ /* Directory and Extension */ $dir_name = ( SCRIPT_DEBUG ) ? 'unminified' : 'minified'; $file_prefix = ( SCRIPT_DEBUG ) ? '' : '.min'; wp_enqueue_script( 'astra-footer-widget-customizer-preview-js', ASTRA_BUILDER_FOOTER_WIDGET_URI . '/assets/js/' . $dir_name . '/customizer-preview' . $file_prefix . '.js', array( 'customize-preview', 'astra-customizer-preview-js' ), ASTRA_THEME_VERSION, true ); // Localize variables for WIDGET JS. wp_localize_script( 'astra-footer-widget-customizer-preview-js', 'AstraBuilderWidgetData', array( 'footer_widget_count' => defined( 'ASTRA_EXT_VER' ) ? Astra_Builder_Helper::$component_limit : Astra_Builder_Helper::$num_of_footer_widgets, 'tablet_break_point' => astra_get_tablet_breakpoint(), 'mobile_break_point' => astra_get_mobile_breakpoint(), 'is_flex_based_css' => Astra_Builder_Helper::apply_flex_based_css(), 'has_block_editor' => astra_has_widgets_block_editor(), ) ); } } /** * Kicking this off by creating the object of the class. */ new Astra_Footer_Widget_Component_Loader();/** * Deprecated Functions of Astra Theme. * * @package Astra * @author Astra * @copyright Copyright (c) 2020, Astra * @link https://wpastra.com/ * @since Astra 1.0.23 */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Deprecating footer_menu_static_css function. * * Footer menu specific static CSS function. * * @since 3.7.4 * @deprecated footer_menu_static_css() Use astra_footer_menu_static_css() * @see astra_footer_menu_static_css() * * @return string Parsed CSS */ function footer_menu_static_css() { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_footer_menu_static_css()' ); return astra_footer_menu_static_css(); } /** * Deprecating is_support_footer_widget_right_margin function. * * Backward managing function based on flag - 'support-footer-widget-right-margin' which fixes right margin issue in builder widgets. * * @since 3.7.4 * @deprecated is_support_footer_widget_right_margin() Use astra_support_footer_widget_right_margin() * @see astra_support_footer_widget_right_margin() * * @return bool true|false */ function is_support_footer_widget_right_margin() { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_support_footer_widget_right_margin()' ); return astra_support_footer_widget_right_margin(); } /** * Deprecating prepare_button_defaults function. * * Default configurations for builder button components. * * @since 3.7.4 * @deprecated prepare_button_defaults() Use astra_prepare_button_defaults() * @param array $defaults Button default configs. * @param string $index builder button component index. * @see astra_prepare_button_defaults() * * @return array */ function prepare_button_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_button_defaults()' ); return astra_prepare_button_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_html_defaults function. * * Default configurations for builder HTML components. * * @since 3.7.4 * @deprecated prepare_html_defaults() Use astra_prepare_html_defaults() * @param array $defaults HTML default configs. * @param string $index builder HTML component index. * @see astra_prepare_html_defaults() * * @return array */ function prepare_html_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_html_defaults()' ); return astra_prepare_html_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_social_icon_defaults function. * * Default configurations for builder Social Icon components. * * @since 3.7.4 * @deprecated prepare_social_icon_defaults() Use astra_prepare_social_icon_defaults() * @param array $defaults Social Icon default configs. * @param string $index builder Social Icon component index. * @see astra_prepare_social_icon_defaults() * * @return array */ function prepare_social_icon_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_social_icon_defaults()' ); return astra_prepare_social_icon_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_widget_defaults function. * * Default configurations for builder Widget components. * * @since 3.7.4 * @deprecated prepare_widget_defaults() Use astra_prepare_widget_defaults() * @param array $defaults Widget default configs. * @param string $index builder Widget component index. * @see astra_prepare_widget_defaults() * * @return array */ function prepare_widget_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_widget_defaults()' ); return astra_prepare_widget_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_menu_defaults function. * * Default configurations for builder Menu components. * * @since 3.7.4 * @deprecated prepare_menu_defaults() Use astra_prepare_menu_defaults() * @param array $defaults Menu default configs. * @param string $index builder Menu component index. * @see astra_prepare_menu_defaults() * * @return array */ function prepare_menu_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_menu_defaults()' ); return astra_prepare_menu_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_divider_defaults function. * * Default configurations for builder Divider components. * * @since 3.7.4 * @deprecated prepare_divider_defaults() Use astra_prepare_divider_defaults() * @param array $defaults Divider default configs. * @param string $index builder Divider component index. * @see astra_prepare_divider_defaults() * * @return array */ function prepare_divider_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_divider_defaults()' ); return astra_prepare_divider_defaults( $defaults, absint( $index ) ); } /** * Deprecating is_astra_pagination_enabled function. * * Checking if Astra's pagination enabled. * * @since 3.7.4 * @deprecated is_astra_pagination_enabled() Use astra_check_pagination_enabled() * @see astra_check_pagination_enabled() * * @return bool true|false */ function is_astra_pagination_enabled() { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_check_pagination_enabled()' ); return astra_check_pagination_enabled(); } /** * Deprecating is_current_post_comment_enabled function. * * Checking if current post's comment enabled and comment section is open. * * @since 3.7.4 * @deprecated is_current_post_comment_enabled() Use astra_check_current_post_comment_enabled() * @see astra_check_current_post_comment_enabled() * * @return bool true|false */ function is_current_post_comment_enabled() { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_check_current_post_comment_enabled()' ); return astra_check_current_post_comment_enabled(); } /** * Deprecating ast_load_preload_local_fonts function. * * Preload Google Fonts - Feature of self-hosting font. * * @since 3.7.4 * @deprecated ast_load_preload_local_fonts() Use astra_load_preload_local_fonts() * @param string $google_font_url Google Font URL generated by customizer config. * @see astra_load_preload_local_fonts() * * @return string */ function ast_load_preload_local_fonts( $google_font_url ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_load_preload_local_fonts()' ); return astra_load_preload_local_fonts( $google_font_url ); } /** * Deprecating ast_get_webfont_url function. * * Getting webfont based Google font URL. * * @since 3.7.4 * @deprecated ast_get_webfont_url() Use astra_get_webfont_url() * @param string $google_font_url Google Font URL generated by customizer config. * @see astra_get_webfont_url() * * @return string */ function ast_get_webfont_url( $google_font_url ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_get_webfont_url()' ); return astra_get_webfont_url( $google_font_url ); }/** * The header for Astra Theme. * * This is the template that displays all of the section and everything up until
* * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package Astra * @since 1.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } ?> Cleopatra VII: The last High Pharaoh out of Ancient Egypt - Dommus Innovation

Cleopatra VII: The last High Pharaoh out of Ancient Egypt

Also, not is the brand new reptile seen within the chamber, whether or not somebody told you they spotted some lines from it near the ocean.” Wikimedia CommonsA Roman wall surface paint regarding the very first millennium C.Age., believed to show Cleopatra’s demise. However, Cleopatra’s existence — and her mystical passing — will continue to intrigue plenty of people to today. Because the date marched to your, Octavian, who is better-known today because the “Augustus,” turned into the newest hero. Additionally, because the Schiff cards, Octavian decorated his beat out of Cleopatra since the herald from a great the newest, fantastic years.

Throughout the girl existence, she turned of a great politically experienced princess on the one of the most well-known rulers of all time. Once she was born to 69 BCE, Egypt came into existence a patchwork tapestry away from Greek society and old Egyptian life. The woman affair with Rome's Draw Antony and determined a well-known play because of the William Shakespeare, Antony and Cleopatra, which had been basic performed in the 1607.

The guy stormed away shouting in the their betrayal so you can arouse individuals. Cleopatra, for the time being, had increased an army out of mercenaries to try and wrangle strength and control of the woman cousin. While the Cleopatra escaped Egypt the fresh Roman leader Pompey, who had been engaged in a municipal war which have Caesar, escaped so you can Egypt. Cleopatra, dreading an uprising, fled in order to Rome along with her sibling’s supporters caught control of government entities. Cleopatra’s first handle more than international points did not boost their somebody’s hopes for a ruler sometimes.

Amidst the brand new timeless tapestry of history, couple liaisons has ignited as often fascinate as the you to definitely between Cleopatra and you will Julius Caesar. Having whispers out of wonderful charm, political savvy, and you will romantic romances, Cleopatra’s heritage feels nearly story book. Get the courageous lifetime of Anne Bonny, a legendary ladies pirate just who defied 18th-century norms and you can sailed to the records near to Mary Read. Their assistance helps keep these types of stories alive and allows us to manage a lot more content, images, and you can historical cards.

The fresh Aftermath From Cleopatra’s Passing

online casino gratis spins

Cleopatra required 60 vessels from the battle, strong in the step aboard her own leading, the brand new Antonias, a rareness to own a female of their day. He released an attack to the hearts and you may slot gypsy rose heads out of Cleopatra’s anyone. The guy as well as painted Cleopatra a good traitor to help you Rome and you will proclaimed war on the Ptolemaic empire. Following this triumphant territorial reclamation, Cleopatra necessary to imprint the woman strong position on her someone. Antony’s conquests and triggered the fresh reclamation away from lands around the Ptolemaic kingdom.

Cleopatra are residing in Rome, because the mistress of Julius Caesar, at the time that he is assassinated

Antony also moved so you can Egypt and you will desired money out of Cleopatra to own an army mission one his country cannot afford. Antony summoned Cleopatra so you can Antioch to talk about pressing items such as Herod's kingdom and funding to own his Parthian promotion. The girl competitor Herod try focused on municipal combat in the Judea you to necessary heavier Roman armed forces advice, however, obtained nothing of Cleopatra. Connections between Mark Antony and you may Cleopatra maybe soured when he not just hitched Octavia inside 40 BC, but also went their head office in order to Athens and you will sired the woman a few students, Antonia the fresh Senior in the 39 BC and you will Antonia Minor in the thirty six BC. By the end out of 40 BC, Cleopatra offered delivery to help you twins, a man entitled Alexander Helios and you may a female entitled Cleopatra Selene II, each of just who Antony known as their people. The brand new meeting will allow Cleopatra to clear up the myth one she seemed to support Cassius in the municipal war, and you will create target clicking concerns about territorial exchanges in the Levant.

She is knowledgeable about many information, as well as economics, legislation, military means, and you will linguistics. Cleopatra influenced Egypt from 51 BCE up until 29 BCE, when she grabbed her own existence pursuing the overcome by her Roman competitor Octavian. Antony and you will Cleopatra’s forces have been beaten by the Octavian’s military at the Competition from Actium in the 30 BCE and you will in hopes the conclusion her rule. Documented monetary reform aids the fresh ancient lifestyle one to Cleopatra VII authored treatises for the coinage as well as on loads and you will steps. Away from you to definitely moment until their death by the committing suicide nearly 2 decades after, Cleopatra VII influenced their kingdom with little to no sedition or revolt, whether or not she must take on the new expansion and you can electricity out of Rome.

She Spoke So you can Her Somebody

Whilst the army make by the Antony and Cleopatra is actually large, the newest well-known competition from Actium in the September out of 29 BCE constituted a first basic action to the their defeat. The couple’s kids got royal headings over Middle Eastern places. All of Ptolemy’s college students expected in order to eventually signal, and this produced them competitors.

slots ferie denmark

Please help 100 percent free record knowledge to possess an incredible number of students international for just $5 per month by the as a part. In a day and time when females hardly otherwise never asserted governmental handle more than people, and you can women rulers were rare, she managed to care for Egypt in a state of freedom to own provided she stored the fresh throne and not forgot exactly what is actually due to the woman somebody. She remains to your map in order to have seduced two of the best people from her go out, when you’re their offense would be to provides joined for the those individuals exact same 'wily and suspicious' relationship partnerships that each and every man within the energy enjoyed. Movies, instructions, television shows, and plays was produced regarding the the woman existence, and you will she actually is illustrated inside the works of art in just about any millennium as much as the current. Cleopatra provides went on in order to cast one exact same spell in the ages because the their death and you may remains the most well-known queen of old Egypt.

She Raided Alexander The favorable’s Tomb

Within the 36 BC, he was defeated from the Parthians and you may gone back to Alexandria. Antony organized an excellent Roman campaign contrary to the Parthians using Egypt’s help. By the efficiently conquering Caesar’s opposition, the newest Roman Mark Antony turned a powerful leader in the Rome. Also known as Ptolemy Caesar, the kid represented a vital union anywhere between Rome and you can Egypt. Despite the years of a mess and you may dilemma, the fresh Egyptian priests and people however kept firmly to their life style and you will culture.

She realized one to the woman family members is at conflict – for the people it governed, sufficient reason for by itself. By the point of one’s birth out of Cleopatra VII in the 69 BCE, Egypt had a 3000-year-old history of power and decline. Her renowned charm and charm lead to one of the most famous romances of them all -plus the Ancient industry’s best catastrophe. Cleopatra VII the most popular women that provides previously stayed. Although some professionals look after one she killed herself, other people matter if Octavian starred a role in the Cleopatra’s passing. It’s value noting you to definitely both Plutarch and you may Dio were created just after Cleopatra’s passing — and therefore there is enough time for not the case gossip so you can pass on.

Carrito de compra