表现控件

表现控件是什么?

A Presenter is a class that contains the logic that is needed to generate your view (or views). When the controller is done with your user input and is done with whatever actions it needed to take, it turns execution over to the Presenter to retrieve and process whatever data is needed for the view. A Presenter shouldn't do any data manipulation but can contain database calls and any other retrieval or preparation operations needed to generate the View's data.

表现控件是選擇性的,如果你不需要它們,你可以直接使用 Views,并保持在控制器中預处理邏輯。

建立一个表现控件

首先我們在 APPPATH/classes/presenter/index.php 建立一个空的 Presenter 类別:

class Presenter_Index extends Presenter
{
}

Then you create the view that is associated with the presenter in app/views/index.php:

<h1><?php echo $title; ?></h1>

<ul>
<?php
	foreach ($articles as $a)
	{
		echo '<li>'.$a->title.'</li>';
	}
?>
</ul>

關於檢視名稱
A Presenter and its view are by default expected to share the same name. Thus a Presenter Presenter_Index expects the view to be in app/views/index.php. And underscores work here the same as with classes, which means that the view for Presenter_Some_Thing is expected to be in app/views/some/thing.php.
This default can be overwritten by setting a non-static $_view property in your Presenter with the View name (without it's suffix), or passing a custom View name when forging the Presenter.

And last we'll create the Presenter from the controller:

$presenter = Presenter::forge('index');

Now we have everything setup; however, there is still no data passed to the view. It still needs to get a $title string and $articles array passed to it. We do this by adding a view() method to the Presenter which will assign this data:

class Presenter_Index extends Presenter
{

	public function view()
	{
		$this->title = 'Testing this Presenter thing';

		$this->articles = Model_Articles::find('all');
	}
}

你就大功告成了。

In your code, Views and Presenters are interchangeable. You can return Presenters from your controller actions, you can set a Presenter as a Theme partial, or assign it to a section of your page template. The basic API of the Presenter is compatible with the View. This makes it easy to swap a View for a Presenter in your code without having to do a major code overhaul.

傳遞函式到檢視

To pass a View specific function from your Presenter to your View, you use Closures:

// 在 Presenter 中
class Presenter_Index extends Presenter
{

	public function view()
	{
		$this->echo_upper = function($string) { echo strtoupper($string); };
	}
}

// 然後你可以在你的檢視使用:
$echo_upper('this string'); // 輸出:"THIS STRING"

安全性

它與 View 運作相同。这意味著任何在 Presenter 的設定将被輸出编码, 只要你不關掉它的話。你可以直接在 Presenter 使用相同的 set($name, $value, $encode) 方法, 就像你在 View 使用那樣。更多關於此在 View 的安全性章節

進階用法

更多方法

If there are different ways of parsing the same View, you can add multiple methods to the Presenter other than the default view() method. To use those, you need to add the method's name as the second parameter to the Presenter::forge() method:

// will call other_method() upon the Presenter from the above example
$presenter = Presenter::forge('index', 'other_method');

Before 和 after 方法

如果你需要让一些資料添加到 Presenter 中的所有方法,你可以添加一个 before()after() 方法。就像你在 Controllers 做的那樣。

變更檢視

By default, the $this->_view gets a View object assigned to it. You can replace this object by making your own set_view() method in the Presenter and setting the $this->_view to an object of your choosing.
However, this object must allow you to set properties on it (which are used as the template data) and must have a __toString() magic method that will render and return the parsed contents. In other works, it must be compatible with the behaviour of the View class.
The name of the expected view is available in the $this->_view property.

Using a different view file, or an existing View object

You can also tell the Presenter instance to use a different view, and not use the automatic mechanism for determining the view to load, by using the forth parameter of the forge() method:

// 使用 'other/index' 檢視來代替 'index' 檢視
$presenter = Presenter::forge('index', 'other_method', null, 'other/index');

// 你也可以直接傳遞一个 View 物件
$view = View::forge('other/index');
$presenter = Presenter::forge('index', 'other_method', null, $view);

存取檢視

你可以使用 get_view() 方法在 Presenter 以外的地方存取 View 物件。

從其他命名空間或非 Presenter_ 前綴的地方使用 Presenter

如果你想要使用这些,你必須對 forge()使用完整的类別名稱,包含命名空間。 在这些情況下,預設的命名往往会不如預期般運作, 所以鼓勵設定 $_view 特性,或傳遞一个自訂檢視名稱。