Attachment_thumbnailAction is a ManagedAction (doPreparation)

This commit is contained in:
Mikael Nordfeldth 2015-01-25 11:23:04 +01:00
parent 0e0783ee8c
commit 132ac624a2
1 changed files with 3 additions and 5 deletions

View File

@ -44,18 +44,16 @@ class Attachment_thumbnailAction extends AttachmentAction
protected $thumb_h = null; // max height protected $thumb_h = null; // max height
protected $thumb_c = null; // crop? protected $thumb_c = null; // crop?
protected function prepare(array $args=array()) protected function doPreparation()
{ {
parent::prepare($args); parent::doPreparation();
$this->thumb_w = $this->int('w'); $this->thumb_w = $this->int('w');
$this->thumb_h = $this->int('h'); $this->thumb_h = $this->int('h');
$this->thumb_c = $this->boolean('c'); $this->thumb_c = $this->boolean('c');
return true;
} }
function showPage() public function showPage()
{ {
// Returns a File_thumbnail object or throws exception if not available // Returns a File_thumbnail object or throws exception if not available
try { try {