/**
 *
 * Add the context all the files needed to enable basic
 * slider and can be run the widget. View settings.yml
 * @param string $type default value: null; if $type = 'CSS' Add only stylesheets
 *        if $type = 'JS' Add only javascripts files .
 */
function set_slider_configuration_files($type = null)
{
    set_ui_common_configuration_files('slider', $type);
}
/**
 *
 * Add the context all the files needed to enable basic
 * ui.accordion and can be run the widget. View settings.yml
 * @param string $type default value: null; if $type = 'CSS' Add only stylesheets
 *        if $type = 'JS' Add only javascripts files .
 */
function set_ui_core_configuration_files($type = null)
{
    set_ui_common_configuration_files('core', $type);
}
/**
 *
 * Add the context all the files needed to enable basic
 * ui.accordion and can be run the widget. View settings.yml
 * @param string $type default value: null; if $type = 'CSS' Add only stylesheets
 *        if $type = 'JS' Add only javascripts files .
 */
function set_accordion_configuration_files($type = null)
{
    set_ui_common_configuration_files('accordion', $type);
}
/**
 *
 * Add the context all the files needed to enable basic
 * ui.selectable and the effect can be run. View settings.yml
 * @param string $type default value: null; if $type = 'CSS' Add only stylesheets
 *        if $type = 'JS' Add only javascripts files .
 */
function set_selectable_configuration_files($type = null)
{
    set_ui_common_configuration_files('selectable', $type);
}
/**
 *
 * Add the context all the files needed to enable basic
 * ui.datepicker and can be run the widget. View settings.yml
 * @param string $type default value: null; if $type = 'CSS' Add only stylesheets
 *        if $type = 'JS' Add only javascripts files .
 */
function set_datepicker_configuration_files($type = null)
{
    _set_ui_i18n_file(sfConfig::get('app_ys_jquery_ui_datepicker_i18n_file', 'ui.datepicker-en.js'));
    set_ui_common_configuration_files('datepicker', $type);
}
/**
 *
 * Add the context all the files needed to enable basic
 * ui.accordion and can be run the widget. View settings.yml
 * @param string $type default value: null; if $type = 'CSS' Add only stylesheets
 *        if $type = 'JS' Add only javascripts files .
 */
function set_progressbar_configuration_files($type = null)
{
    set_ui_common_configuration_files('progressbar', $type);
}
/**
 *
 * Add the context all the files needed to enable basic
 * ui.droppable and the effect can be run. View settings.yml
 * @param string $type default value: null; if $type = 'CSS' Add only stylesheets
 *        if $type = 'JS' Add only javascripts files .
 */
function set_droppable_configuration_files($type = null)
{
    set_ui_common_configuration_files('droppable', $type);
}
/**
 *
 * Add the context all the files needed to enable basic
 * ui.tab and can be run the widget. View settings.yml
 * @param string $type default value: null; if $type = 'CSS' Add only stylesheets
 *        if $type = 'JS' Add only javascripts files .
 */
function set_tabs_configuration_files($type = null)
{
    set_ui_common_configuration_files('tabs', $type);
}
/**
 *
 * Add the context all the files needed to enable basic
 * ui.accordion and the effect can be run. View settings.yml
 * @param string $type default value: null; if $type = 'CSS' Add only stylesheets
 *        if $type = 'JS' Add only javascripts files .
 */
function set_resizable_configuration_files($type = null)
{
    set_ui_common_configuration_files('resizable', $type);
}
/**
 *
 * Add the context all the files needed to enable basic
 * ui.dialog and can be run the widget. View settings.yml
 * @param string $type default value: null; if $type = 'CSS' Add only stylesheets
 *        if $type = 'JS' Add only javascripts files .
 */
function set_dialog_configuration_files($type = null)
{
    set_ui_common_configuration_files('dialog', $type);
}