Browse Source

Created file class with File::extension method, added File to aliases under application

Michael Hasselbring 14 years ago
parent
commit
4d7794c2ca
2 changed files with 17 additions and 0 deletions
  1. 1 0
      application/config/application.php
  2. 16 0
      system/file.php

+ 1 - 0
application/config/application.php

@@ -103,6 +103,7 @@ return array(
 		'DB' => 'System\\DB',
 		'Download' => 'System\\Download',
 		'Eloquent' => 'System\\DB\\Eloquent',
+		'File' => 'System\\File',
 		'Form' => 'System\\Form',
 		'Hash' => 'System\\Hash',
 		'HTML' => 'System\\HTML',

+ 16 - 0
system/file.php

@@ -0,0 +1,16 @@
+<?php namespace System;
+
+class File {
+	
+	/**
+	 * Get a file's extension. 
+	 * 
+	 * @param  string $path
+	 * @return string
+	 */
+	public static function extension($path)
+	{
+		return pathinfo($path, PATHINFO_EXTENSION);
+	}
+
+}