meraproject/module/vcard/card/structure/eBackgroundClass.php

80 lines
2.6 KiB
PHP
Raw Permalink Normal View History

<?php
namespace vcard\card\structure;
class eBackgroundClass {
const PAPAYA = 1;
const OCEAN_BLUE = 2;
const LIME = 3;
const SANGUINE = 4;
const PURPLE_LAKE = 5;
const ULTRAMARINE = 6;
const PINK_SUGAR = 7;
const LEMON_DRIZZLE = 8;
const VICTORIA_PURPLE = 9;
const SPRING_GREENS = 10;
const MYSTIC_MAUVE = 11;
const REFLEX_SILVER = 12;
const NEON_GLOW = 13;
const BERRY_SMOOTHIE = 14;
const NEW_LEAF = 15;
const COTTON_CANDY = 16;
const PIXIE_DUST = 17;
const FIZZY_PEACH = 18;
const SWEET_DREAM = 19;
const FIREBRICK = 20;
const WROUGHT_IRON = 21;
const DEEP_SEA = 22;
const COASTAL_BREEZE = 23;
const EVENING_DELIGHT = 24;
const ROYAL = 25;
const BG_WHITE = 26;
const BG_LIGHT_GRAY = 27;
const SPLASH_1 = 1001;
const SPLASH_2 = 1002;
const SPLASH_3 = 1003;
const SPLASH_4 = 1004;
const SPLASH_5 = 1005;
const SPLASH_6 = 1006;
static function getArray(){
return [
self::PAPAYA => '',
self::OCEAN_BLUE => '',
self::LIME => '',
self::SANGUINE => '',
self::PURPLE_LAKE => '',
self::ULTRAMARINE => '',
self::PINK_SUGAR => '',
self::LEMON_DRIZZLE => '',
self::VICTORIA_PURPLE => '',
self::SPRING_GREENS => '',
self::MYSTIC_MAUVE => '',
self::REFLEX_SILVER => '',
self::NEON_GLOW => '',
self::BERRY_SMOOTHIE => '',
self::NEW_LEAF => '',
self::COTTON_CANDY => '',
self::PIXIE_DUST => '',
self::FIZZY_PEACH => '',
self::SWEET_DREAM => '',
self::FIREBRICK => '',
self::WROUGHT_IRON => '',
self::DEEP_SEA => '',
self::COASTAL_BREEZE => '',
self::EVENING_DELIGHT => '',
self::ROYAL => '',
self::BG_WHITE => '',
self::BG_LIGHT_GRAY => '',
self::SPLASH_1 => '',
self::SPLASH_2 => '',
self::SPLASH_3 => '',
self::SPLASH_4 => '',
self::SPLASH_5 => '',
self::SPLASH_6 => '',
];
}
}