return $res;
}
+
+ public static function importFluidbookSettings(){
+ commonDroits::min(5);
+ global $core;
+ $res = commonPage::barre();
+ $res .= commonPage::tMain();
+ $res .= commonPage::bh();
+ $res .= '<form id="importFluidbookSettings" action="importFluidbookSettings" method="post" enctype="multipart/form-data">';
+ $res .= '<table class="liste">';
+ $res .= '<tr><th><strong>' . __("Importer un fichier de paramètres fluidbook") . '</strong></th></tr>';
+ $res .= '<tr><td>Fichier Excel</td><td><input type="file" name="file" accept=".xlsx,.csv" /></td></tr>';
+ $res .= '<tr><td class="right" colspan="2"><a href="#" class="submit">' . $core->typo->BoutonOK(__('Importer')) . '</a></td></td>';
+ $res .= '</table>';
+ $res .= '</form>';
+ $res .= '</div>';
+ $res .= commonPage::bf();
+ $res .= commonPage::bMain();
+ return $res;
+ }
+
+
protected static function searchGoogle($q, $cx, $key)
{
global $core;
*/
protected static function _readonlyStyle($style)
{
- $style->getFill()->setFillType(PHPExcel_Style_Fill::FILL_SOLID)->getStartColor()->setRGB('dddddd');
+ $style->getFill()->setFillType(PHPExcel_Style_Fill::FILL_SOLID)->getStartColor()->setRGB('DDDDDD');
$style->getFont()->getColor()->setRGB('666666');
}
}