Actions added by theme

Action: express_top_modules

Function: sircontheme_top_extras_module
Priority: 5

Function: sircontheme_top_module
Priority: 10

--if setting sticky-icons--
Function: sircontheme_icon_output
Priority: 15

Action: express_middle_started

Function: sircontheme_header_module
Priority: 5

Action: express_page_output

Function: sircontheme_page_module
Priority: 5

Action: express_posts_output

Function: sircontheme_posts_module
Priority: 5

Action: express_single_output

Function: sircontheme_single_module
Priority: 5

Action: express_bottom_modules

Function: sircontheme_footer_module
Priority: 5

Action: express_above_content

Function: sircontheme_frontpage_sidebar
Priority: 5

Action: express_inside_menuswrapper

--if setting logo-in-menu--
Function: sircontheme_bloginfo
Priority: 5

Action: express_top_extras

--if setting !sticky-icons--
Function: sircontheme_icon_output
Priority: 5

--if setting !logo-in-menu--
Function: sircontheme_bloginfo
Priority: 10

Action: express_footer_scripts

--if setting social-sharing != 'none'--
Function: sircontheme_social_scripts
Priority: 5

Easy admin can be turned on/off in advanced theme settings (default on)

When easy admin is turned on, some additional actions are added to theme hooks. See source code:

// Adds edit button to posts and pages
add_action('express_single_page_footer', 'sircontheme_edit_post_button', 10);
add_action('express_single_post_footer', 'sircontheme_edit_post_button', 10);

// Edit button for sidebars
add_action('express_sidebars_after', 'sircontheme_sidebars_edit_button', 5);

// Edit button for sidebars
add_action('express_menus_after', 'sircontheme_nav_edit_button', 5);

// Adds easy admin navigation to bottom extras
add_action('express_bottom_modules', 'sircontheme_easyadmin_section', 10);