Example #1
0
/**
 * 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;
}
Example #2
0
 function test_largo_force_settings_update()
 {
     of_reset_options();
     largo_force_settings_update();
     $this->assertEquals('1', of_get_option('show_sticky_nav'));
     $this->assertEquals('normal', of_get_option('single_template'));
 }
Example #3
0
 function test_largo_force_settings_update()
 {
     of_reset_options();
     largo_force_settings_update();
     $this->assertEquals('1', of_get_option('show_sticky_nav'));
     $this->assertEquals('normal', of_get_option('single_template'));
     #		$this->markTestIncomplete('This test has not yet been implemented');
 }