Page MenuHomeIn-Portal Phabricator

forms_tp.php
No OneTemporary

File Metadata

Created
Fri, Nov 21, 8:33 AM

forms_tp.php

<?php
/**
* @version $Id: forms_tp.php 15152 2012-03-04 09:26:24Z alex $
* @package In-Portal
* @copyright Copyright (C) 1997 - 2009 Intechnic. All rights reserved.
* @license GNU/GPL
* In-Portal is Open Source software.
* This means that this software may have been modified pursuant
* the GNU General Public License, and as distributed it includes
* or is derivative of works licensed under the GNU General Public License
* or other free or open source software licenses.
* See http://www.in-portal.org/license for copyright notices and details.
*/
defined('FULL_PATH') or die('restricted access!');
class FormsTagProcessor extends kDBTagProcessor{
function CheckBox($params)
{
$object = $this->getObject($params);
/* @var $object kDBItem */
$value = $object->GetDBField($this->SelectParam($params, 'name,field'));
if ( $value ) {
return 'checked';
}
if ( is_null($value) ) {
return $params['default'];
}
return '';
}
function MaxUploadSize($params)
{
return round(MAX_UPLOAD_SIZE / 1024 / 1024) . ' Mb';
}
}

Event Timeline