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


PHP osc_current_web_theme_js_url函数代码示例

本文整理汇总了PHP中osc_current_web_theme_js_url函数的典型用法代码示例。如果您正苦于以下问题:PHP osc_current_web_theme_js_url函数的具体用法?PHP osc_current_web_theme_js_url怎么用?PHP osc_current_web_theme_js_url使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: itemCustomHead

function itemCustomHead()
{
    if (osc_item_is_expired()) {
        $echo = "<meta name=\"robots\" content=\"noindex, nofollow\" /><meta name=\"googlebot\" content=\"noindex, nofollow\" />";
    } else {
        $echo = "<meta name=\"robots\" content=\"index, follow\" /><meta name=\"googlebot\" content=\"index, follow\" />";
    }
    echo $echo . '<script type="text/javascript" src="' . osc_current_web_theme_js_url('jquery.validate.min.js') . '"></script>';
}
开发者ID:blairmain,项目名称:theme-realestate,代码行数:9,代码来源:item.php

示例2: itemCustomHead

function itemCustomHead()
{
    ?>
        <script type="text/javascript" src="<?php 
    echo osc_current_web_theme_js_url('jquery.validate.min.js');
    ?>
"></script>'
<?php 
}
开发者ID:blairmain,项目名称:theme-realestate,代码行数:9,代码来源:item-contact.php

示例3: itemCustomHead

function itemCustomHead()
{
    echo '<script type="text/javascript" src="' . osc_current_web_theme_js_url('jquery.validate.min.js') . '"></script>';
    echo '<script type="text/javascript" src="' . osc_current_web_theme_js_url('tabber-minimized.js') . '"></script>';
    ?>
        
        <?php 
    if (osc_images_enabled_at_items()) {
        ItemForm::photos_javascript();
    }
    ?>
        <?php 
}
开发者ID:blairmain,项目名称:theme-realestate,代码行数:13,代码来源:item-edit.php

示例4: itemCustomHead

function itemCustomHead()
{
    echo '<script type="text/javascript" src="' . osc_current_web_theme_js_url('tabber-minimized.js') . '"></script>';
    ?>
        <?php 
    if (realestate_default_location_show_as() == 'dropdown') {
        ItemForm::location_javascript();
    } else {
        ItemForm::location_javascript_new();
    }
    ?>
        <?php 
    if (osc_images_enabled_at_items()) {
        ItemForm::photos_javascript();
    }
    ?>
        <!-- end only item-post.php -->
        <?php 
}
开发者ID:blairmain,项目名称:theme-realestate,代码行数:19,代码来源:item-post.php

示例5: _e

                            </div>
                            <div class="actions">
                                <button class="btn" type="submit"><?php 
_e('Update', 'twitter');
?>
</button>
                            </div>
                        </fieldset>
                    </form>
                </div>
            </div>
        </div>
        <script type="text/javascript">
            var text_error_required = '<?php 
_e('This field is required', 'twitter');
?>
' ;
            var text_valid_email    = '<?php 
_e('Enter a valid e-mail address', 'twitter');
?>
' ;
        </script>
        <script type="text/javascript" src="<?php 
echo osc_current_web_theme_js_url('change_email.js');
?>
"></script>
        <?php 
osc_current_web_theme_path('footer.php');
?>
    </body>
</html>
开发者ID:ricktaylord,项目名称:osclass-themes,代码行数:31,代码来源:user-change_email.php

示例6: osc_current_web_theme_js_url

    <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->

<!-- css -->
<link rel="stylesheet" type="text/css" href="http://twitter.github.com/bootstrap/1.3.0/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="http://www.lista.ph.s3.amazonaws.com/css/twitter-bootstrap/chosen.css" />
<link rel="stylesheet" type="text/css" href="http://www.lista.ph.s3.amazonaws.com/css/twitter-bootstrap/custom.css" />
<!--link rel="stylesheet" type="text/css" href="<?php 
echo osc_current_web_theme_js_url('chosen/chosen.css');
?>
" /-->
<!--link rel="stylesheet" type="text/css" href="<?php 
echo osc_current_web_theme_styles_url('custom.css');
?>
" /-->

<!-- js -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript" src="http://www.lista.ph.s3.amazonaws.com/scripts/twitter-bootstrap/global.js"></script>
<script type="text/javascript" src="http://www.lista.ph.s3.amazonaws.com/scripts/twitter-bootstrap/chosen.min.js"></script>
<!--script type="text/javascript" src="<?php 
echo osc_current_web_theme_js_url('global.js');
?>
"></script>
<script type="text/javascript" src="<?php 
echo osc_current_web_theme_js_url('chosen/chosen.min.js');
?>
"></script-->

<?php 
osc_run_hook('header');
开发者ID:nsswaga,项目名称:OSClass,代码行数:31,代码来源:head.php

示例7: _e

?>
</label>
                            <div class="input">
                                <input class="large" type="password" value="" name="new_password2" id="new_password2">
                            </div>
                        </div>
                        <div class="actions">
                            <button class="btn" type="submit"><?php 
_e('Change password', 'twitter_bootstrap');
?>
</button>
                        </div>
                    </fieldset>
                 </form>
            </div>
        </div>
        <script type="text/javascript">
            var text_error_required = '<?php 
_e('This field is required', 'twitter_bootstrap');
?>
' ;
        </script>
        <script type="text/javascript" src="<?php 
echo osc_current_web_theme_js_url('forgot_password.js');
?>
"></script>
        <?php 
osc_current_web_theme_path('footer.php');
?>
    </body>
</html>
开发者ID:nsswaga,项目名称:OSClass,代码行数:31,代码来源:user-forgot_password.php

示例8: osc_esc_js

"/>
<?php 
}
?>
    <meta http-equiv="Cache-Control" content="no-cache" />
    <meta http-equiv="Expires" content="Fri, Jan 01 1970 00:00:00 GMT" />

    <script type="text/javascript">
        var fileDefaultText = '<?php 
echo osc_esc_js(__('No file selected', 'modern'));
?>
';
        var fileBtnText     = '<?php 
echo osc_esc_js(__('Choose File', 'modern'));
?>
';
    </script>

<?php 
osc_enqueue_style('style', osc_current_web_theme_url('style.css'));
osc_enqueue_style('tabs', osc_current_web_theme_url('tabs.css'));
osc_enqueue_style('jquery-ui-datepicker', osc_assets_url('css/jquery-ui/jquery-ui.css'));
osc_register_script('jquery-uniform', osc_current_web_theme_js_url('jquery.uniform.js'), 'jquery');
osc_register_script('global', osc_current_web_theme_js_url('global.js'));
osc_enqueue_script('jquery');
osc_enqueue_script('jquery-ui');
osc_enqueue_script('jquery-uniform');
osc_enqueue_script('tabber');
osc_enqueue_script('global');
osc_run_hook('header');
FieldForm::i18n_datePicker();
开发者ID:oanav,项目名称:closetshare,代码行数:31,代码来源:head.php

示例9: _e

_e('No regions available', 'twitter_bootstrap');
?>
" ;
            twitter_theme.text_no_cities          = "<?php 
_e('No cities available', 'twitter_bootstrap');
?>
" ;
            twitter_theme.page                    = "form" ;
            twitter_theme.item_id                 = "" ;
        </script>
        <script type="text/javascript" src="<?php 
echo osc_current_web_theme_js_url('bootstrap-tabs.js');
?>
"></script>
        <script type="text/javascript" src="<?php 
echo osc_current_web_theme_js_url('item_form.js');
?>
"></script>
        <?php 
item_category_select_js();
?>
    </head>
    <body>
        <?php 
osc_current_web_theme_path('header.php');
?>
        <div class="container margin-top-10">
            <?php 
twitter_show_flash_message();
?>
        </div>
开发者ID:nsswaga,项目名称:OSClass,代码行数:31,代码来源:item-post.php

示例10: osclasswizards_footer_js

function osclasswizards_footer_js()
{
    echo '<script type="text/javascript" src="' . osc_current_web_theme_js_url('main.js') . '"></script>';
}
开发者ID:syedfiraat4,项目名称:bikade.com,代码行数:4,代码来源:functions.php

示例11: osc_esc_js

echo osc_esc_js(__('No file selected', 'modern'));
?>
';
    var fileBtnText     = '<?php 
echo osc_esc_js(__('Choose File', 'modern'));
?>
';
</script>
<script type="text/javascript" src="<?php 
echo osc_current_web_theme_js_url('jquery.js');
?>
"></script>
<script type="text/javascript" src="<?php 
echo osc_current_web_theme_js_url('jquery-ui.js');
?>
"></script>
<script type="text/javascript" src="<?php 
echo osc_current_web_theme_js_url('jquery.uniform.js');
?>
"></script>
<script type="text/javascript" src="<?php 
echo osc_current_web_theme_js_url('tabber-minimized.js');
?>
"></script>
<script type="text/javascript" src="<?php 
echo osc_current_web_theme_js_url('global.js');
?>
"></script>

<?php 
osc_run_hook('header');
开发者ID:semul,项目名称:Osclass,代码行数:31,代码来源:head.php

示例12: array

 *
 *      You should have received a copy of the GNU Affero General Public
 * License along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
?>

<?php 
$js_lang = array('delete' => __('Delete', 'pop'), 'cancel' => __('Cancel', 'pop'));
osc_enqueue_script('jquery');
osc_enqueue_script('jquery-ui');
osc_register_script('global-theme-js', osc_current_web_theme_js_url('global.js'), 'jquery');
osc_register_script('delete-user-js', osc_current_web_theme_js_url('delete_user.js'), 'jquery-ui');
osc_enqueue_script('global-theme-js');
osc_register_script('imagesloaded-js', osc_current_web_theme_js_url('imagesloaded.pkgd.min.js'));
osc_enqueue_script('imagesloaded-js');
osc_register_script('masonry-js', osc_current_web_theme_js_url('masonry.pkgd.min.js'));
osc_enqueue_script('masonry-js');
?>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />

<title><?php 
echo meta_title();
?>
</title>
<meta name="title" content="<?php 
echo osc_esc_html(meta_title());
?>
" />
<?php 
if (meta_description() != '') {
    ?>
开发者ID:michaelxizhou,项目名称:myeden69-original-backup,代码行数:31,代码来源:head.php

示例13: osc_recover_user_password_url

echo osc_recover_user_password_url();
?>
"><?php 
_e("Forgot password?", 'twitter_bootstrap');
?>
</a>
                            </div>
                        </div>
                    </fieldset>
                </form>
            </div>
        </div>
        <script type="text/javascript">
            var text_error_required = '<?php 
_e('This field is required', 'twitter_bootstrap');
?>
' ;
            var text_valid_email    = '<?php 
_e('Enter a valid e-mail address', 'twitter_bootstrap');
?>
' ;
        </script>
        <script type="text/javascript" src="<?php 
echo osc_current_web_theme_js_url('register.js');
?>
"></script>
        <?php 
osc_current_web_theme_path('footer.php');
?>
    </body>
</html>
开发者ID:nsswaga,项目名称:OSClass,代码行数:31,代码来源:user-register.php

示例14: load_my_script

/**
*
*   jQuery and css to be loaded
*/
function load_my_script()
{
    osc_register_script('jquery', osc_current_web_theme_js_url('jquery.js'));
    osc_enqueue_script('jquery');
    osc_register_script('jquery-ui', osc_base_url() . 'oc-content/themes/classified/js/jquery-ui.min.js', 'jquery');
    osc_register_script('cookie-plugin', osc_base_url() . 'oc-content/themes/classified/js/jquery.cookie.min.js', 'jquery');
    osc_register_script('ratings', osc_base_url() . 'oc-content/themes/classified/js/jRate.min.js');
    osc_enqueue_script('ratings');
    osc_register_script('jquery-validate', osc_base_url() . 'oc-content/themes/classified/js/jquery.validate.min.js', 'jquery');
    osc_enqueue_script('jquery-validate');
    osc_register_script('classified', osc_base_url() . 'oc-content/themes/classified/js/classified.js');
    osc_enqueue_script('classified');
    osc_register_script('jssor', osc_base_url() . 'oc-content/themes/classified/js/jssor.js');
    osc_enqueue_script('jssor');
    osc_register_script('jssor-slider', osc_base_url() . 'oc-content/themes/classified/js/jssor.slider.js');
    osc_enqueue_script('jssor-slider');
    osc_register_script('facebook-admin', osc_base_url() . 'oc-content/themes/classified/js/facebook-admin.js');
    osc_enqueue_script('facebook-admin');
    osc_enqueue_script('cookie-plugin');
    osc_register_script('bootstrap-js', osc_base_url() . 'oc-content/themes/classified/bootstrap/bootstrap.min.js', 'jquery');
    osc_register_script('bootstrap-dialog', osc_base_url() . 'oc-content/themes/classified/js/bootstrap-dialog.min.js');
    osc_register_script('jquery-uniform', osc_base_url() . 'oc-content/themes/classified/js/jquery.uniform.js');
    osc_register_script('jquery-fineuploader', osc_base_url() . 'oc-includes/osclass/assets/js/fineuploader/jquery.fineuploader.min.js', 'jquery');
    if (!OC_ADMIN) {
        osc_enqueue_style('font-awesome', osc_base_url() . 'oc-content/themes/classified/css/font-awesome.min.css');
        osc_enqueue_style('bootstrap', osc_base_url() . 'oc-content/themes/classified/bootstrap/bootstrap.css');
        osc_enqueue_style('facebook-css', osc_base_url() . 'oc-content/themes/classified/css/facebook.css');
        osc_enqueue_style('default-css', osc_base_url() . 'oc-content/themes/classified/style.css');
    }
    if (osc_is_home_page()) {
        //osc_enqueue_style('jCarouselLite-css',osc_base_url().'oc-content/themes/classified/css/premium_slide.css');
        //osc_register_script('jCarouselLite', osc_base_url().'oc-content/themes/classified/js/jCarouselLite.js');
        //osc_enqueue_script('jCarouselLite');
    }
}
开发者ID:Ashishr2,项目名称:Kathmandu,代码行数:39,代码来源:functions.php

示例15: itemCustomHead

function itemCustomHead()
{
    echo '<script type="text/javascript" src="' . osc_current_web_theme_js_url('jquery.validate.min.js') . '"></script>';
}
开发者ID:blairmain,项目名称:theme-realestate,代码行数:4,代码来源:user-register.php


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