76 lines
2.1 KiB
PHP
Raw Permalink Normal View History

2018-03-26 10:33:20 +03:00
<?php
2017-06-24 00:58:56 +03:00
2018-03-26 10:33:20 +03:00
/**
* AVE.cms
*
* @package AVE.cms
* @version 3.x
* @filesource
* @copyright © 2007-2014 AVE.cms, http://www.ave-cms.ru
*
* @license GPL v.2
*/
2017-06-24 00:58:56 +03:00
2018-03-26 10:33:20 +03:00
// Многострочное (Слим)
2018-05-16 23:14:07 +03:00
function get_field_multi_line_slim($field_value, $action, $field_id=0, $tpl='', $tpl_empty=0, &$maxlength=null, $document_fields=array(), $rubric_id=0, $default=null, $_tpl=null)
2018-03-26 10:33:20 +03:00
{
2018-05-16 23:14:07 +03:00
global $AVE_Template;
2017-06-24 00:58:56 +03:00
2018-03-26 10:33:20 +03:00
$fld_dir = dirname(__FILE__) . '/';
2017-06-24 00:58:56 +03:00
2018-05-16 23:14:07 +03:00
$lang_file = $fld_dir . 'lang/' . (defined('ACP')
? $_SESSION['admin_language']
: $_SESSION['user_language']) . '.txt';
2017-06-24 00:58:56 +03:00
2018-03-26 10:33:20 +03:00
$AVE_Template->config_load($lang_file, 'lang');
$AVE_Template->assign('config_vars', $AVE_Template->get_config_vars());
$AVE_Template->config_load($lang_file, 'admin');
2017-06-24 00:58:56 +03:00
2018-05-16 23:14:07 +03:00
$res = null;
2017-06-24 00:58:56 +03:00
2018-03-26 10:33:20 +03:00
switch ($action)
{
case 'edit':
2018-05-16 23:14:07 +03:00
if (isset($_REQUEST['multiedit']) && ($_REQUEST['multiedit'] === true))
2018-03-26 10:33:20 +03:00
{
2018-05-16 23:14:07 +03:00
$oCKeditor = new CKeditor();
$oCKeditor->returnOutput = true;
$oCKeditor->config['toolbar'] = 'Verysmall';
$oCKeditor->config['height'] = 250;
$config = array();
$field = $oCKeditor->editor('data['.$_REQUEST['Id'].'][feld][' . $field_id . ']', $field_value, $config);
2018-03-26 10:33:20 +03:00
}
else
{
$oCKeditor = new CKeditor();
$oCKeditor->returnOutput = true;
$oCKeditor->config['toolbar'] = 'Verysmall';
$oCKeditor->config['height'] = 200;
$config = array();
$field = $oCKeditor->editor('feld[' . $field_id . ']', $field_value, $config);
2017-06-24 00:58:56 +03:00
}
2018-03-26 10:33:20 +03:00
$res = $field;
break;
2017-06-24 00:58:56 +03:00
2018-03-26 10:33:20 +03:00
case 'doc':
$res = get_field_default($field_value,$action,$field_id,$tpl,$tpl_empty,$maxlength,$document_fields,$rubric_id);
$res = document_pagination($res);
break;
2017-06-24 00:58:56 +03:00
2018-05-16 23:14:07 +03:00
case 'req':
$res = get_field_default($field_value,$action,$field_id,$tpl,$tpl_empty,$maxlength,$document_fields,$rubric_id);
break;
2020-07-30 16:49:44 +03:00
case 'api':
$res = get_field_default($field_value, $action, $field_id, $tpl, $tpl_empty, $maxlength, $document_fields, $rubric_id);
break;
2018-03-26 10:33:20 +03:00
case 'name' :
return $AVE_Template->get_config_vars('name');
break;
}
2017-06-24 00:58:56 +03:00
2018-05-16 23:14:07 +03:00
return ($res ? $res : $field_value);
2018-03-26 10:33:20 +03:00
}
?>