* @package block * @link https://www.zentao.net */ namespace zin; if(!$longBlock) { unset($config->block->task->dtable->fieldList['status']); unset($config->block->task->dtable->fieldList['deadline']); unset($config->block->task->dtable->fieldList['estimate']); } panel ( set::className('task-block list-block ' . ($longBlock ? 'block-long' : 'block-sm')), set::title($block->title), set::headingClass('border-b'), to::headingActions ( a ( set('class', 'text-gray'), set('href', $block->moreLink), $lang->more, icon('caret-right') ) ), dtable ( set::height(318), set::bordered(false), set::horzScrollbarPos('inside'), set::cols(array_values($config->block->task->dtable->fieldList)), set::data(array_values($tasks)), ), ); render();