class Search_Core
{
public function result($term)
{
$this->search->title = "Search Results";
$this->search->content = View::factory("search_view");
$test = $this->pleaseWork("This should be on the screen");
$this->search->content->test = $test;
return $this->search;
}
public function pleaseWork($word)
{
$dude = $word;
return $dude;
}
}