Jetpack_Autoupdate::autoupdate_theme PHP Method

autoupdate_theme() public method

public autoupdate_theme ( $update, $item )
    public function autoupdate_theme($update, $item)
    {
        $autoupdate_theme_list = Jetpack_Options::get_option('autoupdate_themes', array());
        if (in_array($item->theme, $autoupdate_theme_list)) {
            $this->expect($item->theme, 'theme');
            return true;
        }
        return $update;
    }