zoukankan      html  css  js  c++  java
  • HelpersURL

    HelpersURL

    The URL class is used for having handy methods or redirecting the page and returning the path to the current template.

    Redirect - To redirect to another page instead of using a header call the static method redirect:

    Url::redirect('path/to/go');

    Previous - To be redirected back to the previous page:

    Url::previous();

    The redirect method can accept a 2nd option of true is used the path will be used as it is provided.

    This is useful to redirect to an external website, by default the redirects are relative to the domain its on.

    The url should be the local path excluding the application url for instance a valid case might be:

    Url::redirect('contacts');

    The redirect method uses the DIR constant to get the application address.

    template_path has been renamed to templatePath

    The next method is get_templatePath, this returns the path to the template relative from the templates folder, for instance by default it will return: http://www.example.com/templates/default/ this is useful for using absolute paths in your design files such as including css and js files.

    Url::templatePath();

    autolink has been renamed to autoLink

    Another useful feature is the ability to scan a block of text look for any domain names then convert them into html links. To use the autoLink call url:: followed by the method name and pass in the string to autoLink:

    $string = "A random piece of text that contains google.com a domain.";
    echo Url::autoLink($string);

    The autoLink method also accepts a 2nd parameter that will be used as the click text for instance a in the text above I want the link to say Google and not google.com.

    $string = "A random piece of text that contains google.com a domain.";
    echo Url::autoLink($string, 'Google');

    When run the link word will be Google which will link to http://google.com

  • 相关阅读:
    freeCAD定制界面
    freeCAD预选项编辑器
    freeCAD文档结构
    FreeCAD鼠标操作指南
    freeCAD下载与安装
    freeCAD特性列表
    关于freeCAD
    html 试题试卷(包含latex)下载成word
    latex转word公式 java (latextoword,latex_word,latex2word,latex_omml)
    oracle 行列转换
  • 原文地址:https://www.cnblogs.com/chunguang/p/5643203.html
Copyright © 2011-2022 走看看