This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Forked from: http://paste.laravel.com/4iV | |
| public function get_reset_password() | |
| { | |
| // render the reset password view | |
| return View::make('auth.reset-password'); | |
| } | |
| public function post_reset_password() | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <snippet> | |
| <content><![CDATA[]]></content> | |
| <tabTrigger></tabTrigger> | |
| <scope></scope> | |
| <description></description> | |
| </snippet> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Vietnamese localization for the jQuery UI date picker plugin. */ | |
| /* Written by Tien Do ([email protected]) */ | |
| jQuery(function ($) | |
| { | |
| $.datepicker.regional["vi-VN"] = | |
| { | |
| closeText: "Đóng", | |
| prevText: "Trước", | |
| nextText: "Sau", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Paginator | |
| * | |
| * The paginator can be used within any controller to easily set up | |
| * some pagination options, including number of pages, page navigation | |
| * and more. It is built to work with Laravel's own pagination library, | |
| * which returns data in a particular format. | |
| * | |
| * Usage: | |
| * Before you can use paginator, make sure you specify the URLs to your pagination |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Class OutputmodMinify | |
| * | |
| * include_once 'OutputmodMinify.php'; | |
| * $html = \OutputmodMinify::minify($html); | |
| */ | |
| /** | |
| * ----------------------------------------------------------------------------------------- |