. */ /** * @brief Contains the docserver controler page * * * @file * @author Arnaud Veber * @author Laurent Giovannoni * @date $date$ * @version $Revision$ * @ingroup admin */ //SPECIFIC PROCESS //columns to show in the list $showCols = array( 'docserver_id' => array( 'functionFormat' => '', 'cssStyle' => '' ), 'device_label' => array( 'functionFormat' => '', 'cssStyle' => '' ), 'docserver_type_id' => array( 'functionFormat' => '', 'cssStyle' => '' ), 'is_readonly' => array( 'functionFormat' => 'isBoolean', 'cssStyle' => 'text-align: center;' ), 'enabled' => array( 'functionFormat' => 'isBoolean', 'cssStyle' => 'text-align: center;' ), ); if (isset($_REQUEST['orderField'])) { $showCols[$_REQUEST['orderField']]['cssStyle'] .= 'background-image: url(static.php?filename=black_0.1.png); '; } //actions to show in the list $actions = array('create', 'read', 'update', 'delete'); include_once 'apps/' . $_SESSION['config']['app_id'] . '/admin/' . 'docservers/new_docservers_view.php';