当前位置: 首页>>代码示例>>PHP>>正文


PHP Resources::embed方法代码示例

本文整理汇总了PHP中Resources::embed方法的典型用法代码示例。如果您正苦于以下问题:PHP Resources::embed方法的具体用法?PHP Resources::embed怎么用?PHP Resources::embed使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Resources的用法示例。


在下文中一共展示了Resources::embed方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: pathinfo

                    $lang_file = './js/jquery_ui/i18n/jquery.ui.datepicker-' . cot::$usr['lang'] . '.js';
                }
                Resources::$rc_link_func($lang_file, 'js', 60);
            }
        }
        if ($uidt_cfg['enable_timepicker']) {
            $timepicker_path = pathinfo($uidt_cfg['timepicker_js'], PATHINFO_DIRNAME);
            Resources::addFile($uidt_cfg['timepicker_css'], 'css', 70);
            Resources::$rc_link_func($uidt_cfg['timepicker_js'], 'js', 70);
            if ($usr['lang'] != 'en') {
                $lang_file = $timepicker_path . "/i18n/jquery-ui-timepicker-{$usr['lang']}.js";
                Resources::$rc_link_func($lang_file, 'js', 70);
            }
            if ($uidt_cfg['support_touch']) {
                Resources::$rc_link_func($timepicker_path . "/jquery-ui-sliderAccess.js", 'js', 70);
            }
        } else {
            $ui_off_code = 'var ui_time_off = true;';
        }
        if (!$uidt_cfg['enable_datepicker']) {
            $ui_off_code .= 'var ui_date_off = true;';
        }
        Resources::$rc_link_func(cot::$cfg['plugins_dir'] . "/{$plug_name}/js/{$plug_name}.js", 'js', 70);
        if ($admintools) {
            Resources::$rc_link_func(cot::$cfg['plugins_dir'] . "/{$plug_name}/js/{$plug_name}.tools.js", 'js', 70);
        }
        if ($ui_off_code) {
            Resources::embed($plug_name, $ui_off_code);
        }
    }
}
开发者ID:Alex300,项目名称:ui_datetime,代码行数:31,代码来源:ui_datetime.rc.php

示例2: cot_rc_embed

/**
 * A shortcut for plain output of an embedded stylesheet/javascript in the header of the page
 *
 * @global array $out Output snippets
 * @param string $code Stylesheet or javascript code
 * @param bool $prepend Prepend this file before other head outputs
 * @param string $type Resource type: 'js' or 'css'
 *
 * @deprecated Will be removed in v.1.0. Resources::embed() instead
 */
function cot_rc_embed($code, $prepend = false, $type = 'js')
{
    $order = 60;
    if ($prepend) {
        $order = 40;
    }
    Resources::embed($code, $type, $order);
}
开发者ID:Andreyjktl,项目名称:Cotonti,代码行数:18,代码来源:functions.php


注:本文中的Resources::embed方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。