/** * Performs various update functions and set a new verion number. * * This acts as a main() for applying database updates when the update ajax is * called. * * @since 0.3 */ function largo_perform_update() { if (largo_need_updates()) { // this must run before any other function that makes use of of_set_option() largo_set_new_option_defaults(); // Run when updating from pre-0.4 if (version_compare(of_get_option('largo_version'), '0.4') < 0) { largo_home_transition(); largo_update_widgets(); largo_transition_nav_menus(); largo_update_prominence_term_descriptions(); largo_force_settings_update(); largo_enable_if_series(); largo_enable_series_if_landing_page(); } // Repeatable, should be run when updating to 0.4+ largo_remove_topstory_prominence_term(); // Always run largo_update_custom_less_variables(); largo_check_deprecated_widgets(); // Set version. of_set_option('largo_version', largo_version()); } return true; }
function test_largo_enable_if_series() { // If the series taxonomy does not exist, of_get_option('series_enabled') is not set // If the series taxonomy exists but has 0 series in it, of_get_option('series_enabled') is not set // If the series taxonomy exists and has >0 series in it, of_get_option('series_enabled') is set to a truthy value. largo_enable_if_series(); $this->markTestIncomplete('This test has not been implemented yet.'); }