Easiest way to load/fire a handful of functions, IF checkbox is checked?

function start_all(){
    $option = get_option($name);
    if ( 'yes' == $custom_field && $otherstuff ){
         function_1();
         function_2();
         function_3();
    }

}

plase it in functions and call whit hook you need – this is just an example