1
0
Fork 0
mirror of https://github.com/Oreolek/kangana.git synced 2024-07-02 22:55:04 +03:00
kangana/application/classes/View/Photo/Edit.php

17 lines
279 B
PHP

<?php defined('SYSPATH') or die('No direct script access.');
/**
* Edit photo view controller
**/
class View_Photo_Edit extends View_Edit {
public $image_path;
public function image()
{
if($this->image_path)
{
return HTML::image($image_path);
}
}
}