summaryrefslogtreecommitdiffstats
path: root/system/helpers/file_helper.php
AgeCommit message (Collapse)AuthorFilesLines
2011-10-20adding new license file (OSL 3.0) and updating readme to ReSTDerek Jones1-4/+16
added notice of license to all source files. OSL to all except the few files we ship inside of the application folder, those are AFL. Updated license in user guide. incrementing next dev version to 3.0 due to licensing change
2011-07-02backed out 648b42a75739, which was a NON-trivial whitespace commit. It ↵Derek Jones1-2/+2
broke the Typography class's string replacements, for instance
2011-04-25Fixed double-space typo.Razican1-2/+2
2011-04-19Removing internal references to the EXT constant. Additionally, marked the ↵Greg Aker1-4/+4
constant as deprecated. Use ".php" instead. Also adding upgrade notes from 2.0.2 to 2.0.3.
2011-04-06Made Environment Support optional. Comment out or delete the constant to ↵Phil Sturgeon1-1/+1
stop environment checks.
2011-03-22Fixed logic and removed the error supressingEric Barnes1-3/+3
2011-03-18Fixed coding to match standards from previous releasesEric Barnes1-2/+2
2011-03-17load config files from environment specific locations in core classes, ↵bubbafoley1-1/+10
helpers and libraries
2011-02-14Whitespace cleanup for code consistencyPascal Kriete1-1/+1
2011-01-05Hey look, it's 2011Greg Aker1-1/+1
2010-11-10Updating PHP requirements in files 5.1.6Greg Aker1-1/+1
2010-10-04Cleanup of stray spaces and tabsBarry Mieny1-35/+35
2010-04-09Modified get_file_info in the file helper, changing filectime() to ↵Robin Sowell1-1/+1
filemtime() for dates.
2010-03-03code comments fixDerek Jones1-2/+2
2010-01-17change already made - revertDerek Allard1-1/+1
2010-01-17making get_mime_by_extension case insensitiveDerek Allard1-1/+1
2010-01-15Update to file helper to return FALSE on failure.Greg Aker1-2/+6
2010-01-05updated copyrightsDerek Jones1-1/+1
2009-11-27non-backwards compatible change to get_dir_file_info() for performance ↵Derek Jones1-6/+8
reasons, as well as fixing recursive bug
2009-09-25Made get_mime_by_extension() case insensitive.Derek Allard1-1/+1
2009-04-22updated copyrights to 2009Derek Jones1-1/+1
2009-04-21switched some hard /'s to DIRECTORY_SEPARATORDerek Jones1-14/+13
2009-02-10declared $_filedata as static so it can work properly with recursion through ↵Derek Jones1-1/+1
subdirectories http://codeigniter.com/bug_tracker/bug/6592/
2008-11-13Changing EOL style to LFDerek Allard1-464/+464
2008-10-06Added some code to ignore empty folders when deleting directoriesRick Ellis1-1/+5
2008-09-13updated copyrightRick Ellis1-1/+1
2008-08-21whitespace fixesDerek Allard1-52/+52
a minor re-ordering of the changelog
2008-05-29added error suppression to fopen() in write_file()Derek Jones1-1/+1
2008-05-13Some sweeping syntax changes for consistency:Derek Jones1-19/+19
(! foo) changed to ( ! foo) || changed to OR changed newline standardization code in various places from preg_replace to str_replace
2008-05-11Removed closing PHP tags, replaced with a comment block identifying the end ↵Derek Jones1-2/+4
of the file
2008-05-11Undoing change committed in r1115Derek Jones1-0/+1
2008-05-11removed closing PHP tag from all framework filesDerek Jones1-1/+0
2008-05-08added symbolic_permissions() and octal_permissions() to the File helperDerek Jones1-0/+88
2008-05-06Flipped user guide page titles for easier recognition in tabs:Derek Jones1-1/+1
<title>CodeIgniter User Guide : Page TItle</title> to <title>Page Title : CodeIgniter User Guide</title>
2008-05-05tweak to the new fopen mode constant namesDerek Jones1-2/+2
2008-05-05implemented fopen mode constantsDerek Jones1-3/+3
2008-05-05Added get_dir_file_info(), get_file_info(), and get_mime_by_extension() to ↵Derek Allard1-7/+174
the File Helper. Changed ( ! condition) into (! condition) within the code
2008-04-01Modified get_filenames() to use DIRECTORY_SEPARATOR constant instead of '/' ↵Derek Jones1-2/+2
for better cross-platform compatibility
2008-03-28moved the $_recursion conditional in get_filenames() to fix a bug where a ↵Derek Jones1-9/+8
bad submitted path would result in the system using / as the source directory.
2008-03-27Fixed bug #4350 in get_filenames() when the $source_dir does not include a ↵Derek Jones1-2/+6
trailing slash
2008-02-27fixed recursion in get_filenames() (bug #3523)Derek Jones1-4/+9
2008-02-21fix $FALSE to FALSEDerek Allard1-1/+1
2008-02-20modified get_filenames() to return FALSE if the directory cannot be readDerek Jones1-0/+4
2008-01-29fixed bug #3314 where the top level path would be deleted along with files ↵Derek Jones1-3/+2
in delete_files()
2008-01-28added ability to "extend" helpersDerek Jones1-63/+75
* modified Loader to check for prefixed helpers in application/helpers folder * surrounded provided helper functions with if (! function_exists('foo')) conditionals so the user's helper functions take precedent.
2008-01-28added is_really_writable() to Common.php, replaced is_writable() throughout ↵Derek Jones1-35/+0
application with is_really_writable()
2008-01-22Fixed bug #3289 where temp files in directories being tested with ↵Derek Jones1-0/+2
is_really_writable() were not being handled properly
2008-01-21replaced www.codeigniter.com with codeigniter.comDerek Jones1-3/+3
2008-01-18ExpressionEngine Dev Team in creditDerek Allard1-2/+2
2008-01-09fix for is_really_writableDerek Allard1-0/+35