get categories function for category definition in moderation page
This commit is contained in:
@@ -92,3 +92,22 @@ function get_db() {
|
|||||||
|
|
||||||
return $pdo;
|
return $pdo;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ---------------------------------------------------------------------
|
||||||
|
// Category Definitions
|
||||||
|
// Returns associative Array of Category Keys to Labels, Icons,
|
||||||
|
// and Colors. Shared between Citizen Participation Portal and
|
||||||
|
// Moderation Page.
|
||||||
|
// ToDo: Move to Database Table.
|
||||||
|
// ---------------------------------------------------------------------
|
||||||
|
function get_categories() {
|
||||||
|
return [
|
||||||
|
'consumption' => ['label' => 'Geschäfte', 'faIcon' => 'fa-cart-shopping', 'color' => '#C00000'],
|
||||||
|
'building' => ['label' => 'Bauen', 'faIcon' => 'fa-building', 'color' => '#E65100'],
|
||||||
|
'energy' => ['label' => 'Energie', 'faIcon' => 'fa-bolt', 'color' => '#FFC000'],
|
||||||
|
'environment' => ['label' => 'Umwelt', 'faIcon' => 'fa-seedling', 'color' => '#92D050'],
|
||||||
|
'mobility' => ['label' => 'Mobilität', 'faIcon' => 'fa-bus', 'color' => '#0070C0'],
|
||||||
|
'industry' => ['label' => 'Industrie', 'faIcon' => 'fa-industry', 'color' => '#7030A0'],
|
||||||
|
'other' => ['label' => 'Sonstiges', 'faIcon' => 'fa-thumbtack', 'color' => '#7F7F7F'],
|
||||||
|
];
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user