Ejemplo n.º 1
0
	</div>
</div>

<div class="BlueBox">
	<h2>suggestions...</h2>
	<?php 
PrintRequestList($box_contents['suggestion'], $parent_type, TRUE);
?>
</div>

<div class="BlueBox">
	<h2>unassigned requests...</h2>
	<?php 
PrintRequestList($box_contents['unassigned'], $parent_type);
?>
</div>

<div class="BlueBox">
	<h2>assigned requests...</h2>
	<?php 
PrintRequestList($box_contents['assigned'], $parent_type);
?>
</div>

<div class="BlueBox">
	<h2>ready articles...</h2>
	<?php 
PrintRequestList($box_contents['ready'], $parent_type);
?>
</div>
Ejemplo n.º 2
0
            }
            echo '">' . date('d/m/y @ H:i', $row['deadline']) . '</td>' . "\n";
            echo '					</tr>' . "\n";
            $RowStyle = !$RowStyle;
        }
    }
    echo '			    </tbody>' . "\n";
    echo '			</table>' . "\n";
    echo '		</div>' . "\n";
}
?>
<div class="BlueBox">
	<h2>unassigned</h2>
	<?php 
PrintRequestList($requests['unassigned']);
?>
</div>

<div class="BlueBox">
	<h2>assigned</h2>
	<?php 
PrintRequestList($requests['assigned'], TRUE);
?>
</div>

<div class="BlueBox">
	<h2>ready</h2>
	<?php 
PrintRequestList($requests['ready'], TRUE);
?>
</div>