Browse Source

added methods for upload_of.

Taylor Otwell 13 years ago
parent
commit
9f7da5cb39
1 changed files with 24 additions and 1 deletions
  1. 24 1
      system/validation/rules/upload_of.php

+ 24 - 1
system/validation/rules/upload_of.php

@@ -46,6 +46,29 @@ class Upload_Of extends Rule {
 		}
 
 		return true;
-	}	
+	}
+
+	/**
+	 * Set the acceptable file extensions.
+	 *
+	 * @return Upload_Of
+	 */
+	public function has_extension()
+	{
+		$this->extensions = func_get_args();
+		return $this;
+	}
+
+	/**
+	 * Set the maximum file size in bytes.
+	 *
+	 * @param  int  $maximum
+	 * @return Upload_Of
+	 */
+	public function less_than($maximum)
+	{
+		$this->maximum = $maximum;
+		return $this;
+	}
 
 }