Files
luos/gulliver/thirdparty/html2ps_pdf/strategy.table.layout.fixed.php
Victor Saisa Lopez 6d9858d6d0 HOR-1738 "Change folder permissions in ProcessMaker" SOLVED
Issue:
    Change folder permissions in ProcessMaker
Cause:
    Nuevo requerimiento
Solution:
    Se cambio los permisos de los files and directories
2016-08-30 13:03:35 -04:00

18 lines
381 B
PHP

<?php
class StrategyTableLayoutFixed {
function StrategyTableLayoutFixed() {
}
function apply($table, &$context) {
$width = $table->get_width();
$widths = array();
for ($i = 0, $size = $table->cols_count(); $i < $size; $i++) {
$cwc =& $table->get_cwc($i);
$widths[] = $cwc->apply(0, $table->parent->get_width());
};
return $widths;
}
}
?>