$this->_ignore = ['id', 'name', 'owner', 'created_at', 'deleted_at', 'updated_at', 'slug'];
$data = [];
- $t = DB::table('extranet_clean.ws3_theme');
+ $t = DB::table('extranet_clean.ws3_themes');
if ($this->id === 'all') {
foreach (FluidbookTheme::all() as $theme) {
$data[] = $this->_handleTheme($theme);
}
$settings[$k] = $v;
}
- return ['theme_id' => $theme->id, 'signature' => 0, 'nom' => $theme->name, 'proprietaire' => $theme->owner, 'icones' => $theme->iconSet, 'date' => strtotime($theme->creation_date), 'parametres' => json_encode($settings)];
+ return ['theme_id' => $theme->id,'nom' => $theme->name, 'proprietaire' => $theme->owner, 'icones' => $theme->iconSet, 'date' => strtotime($theme->creation_date), 'parametres' => json_encode($settings)];
}
public static function colorAlphaToWS2($data)