16 lines
414 B
PHP
16 lines
414 B
PHP
<?php
|
|
class Zend_View_Helper_Editable extends Zend_View_Helper_Abstract
|
|
{
|
|
public function Editable($name, $value, $defaultValue, $category)
|
|
{
|
|
$html = '';
|
|
$html.= '<span id="'.$name.'" class="editable '.$category.'">';
|
|
if ($value===null) {
|
|
$html.= $defaultValue;
|
|
} else {
|
|
$html.= $value;
|
|
}
|
|
$html.= '</span>';
|
|
return $html;
|
|
}
|
|
} |