Changeset 1168 for trunk/system/core/Kohana.php
- Timestamp:
- 11/18/2007 03:13:52 AM (13 months ago)
- Files:
-
- 1 modified
-
trunk/system/core/Kohana.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/core/Kohana.php
r1121 r1168 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 /* 2 /** 3 3 * Class: Kohana 4 4 * Provides Kohana-specific helper functions. This is where the magic happens! … … 420 420 } 421 421 422 /* 422 /** 423 423 * Method: show_error 424 424 * Show a custom error message … … 437 437 } 438 438 439 /* 439 /** 440 440 * Method: auto_load 441 441 * Provides class auto-loading … … 500 500 } 501 501 502 /* 502 /** 503 503 * Method: find_file 504 504 * Find a resource file in a given directory … … 563 563 } 564 564 565 /* 565 /** 566 566 * Method: list_files 567 567 * Lists all files and directories in a resource path … … 570 570 * directory - directory to search 571 571 * recursive - list all files to the maximum depth? 572 * path - full path to search (used for recursion, *never* set this manually)572 * path - full path to search (used for recursion, *never* set this manually) 573 573 */ 574 574 public static function list_files($directory, $recursive = FALSE, $path = FALSE)
