Browse Source

added with method to view class.

Taylor Otwell 14 years ago
parent
commit
edbf7f3b0f
1 changed files with 12 additions and 0 deletions
  1. 12 0
      system/view.php

+ 12 - 0
system/view.php

@@ -83,6 +83,18 @@ class View {
 		return $this;
 	}
 
+	/**
+	 * Merge an array into the view data.
+	 *
+	 * @param  array  $data
+	 * @return View
+	 */
+	public function with($data)
+	{
+		$this->data = array_merge($this->data, $data);
+		return $this;
+	}
+
 	/**
 	 * Get the parsed content of the view.
 	 *