-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWaves.php
34 lines (32 loc) · 955 Bytes
/
Waves.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
namespace makroxyz\materializecss;
/**
* Description of Waves
*
* @author marco
*/
class Waves
{
const INIT_WAVE = 'waves-effect';
const WAVE_TEAL = 'waves-teal';
const WAVE_LIGHT = 'waves-light';
const WAVE_RED = 'waves-red';
const WAVE_YELLOW = 'waves-yellow';
const WAVE_ORANGE = 'waves-orange';
const WAVE_PURPLE = 'waves-purple';
const WAVE_GREEN = 'waves-green';
const WAVE_CIRCLE = 'waves-circle';
const WAVE_BLOCK = 'waves-block';
const WAVE_FLOAT = 'waves-float';
const WAVE_BUTTON = 'waves-button';
public static function addWaveEffect(&$options, $color = self::WAVE_LIGHT, $form = '')
{
$class = self::INIT_WAVE . " $color $form";
Html::addCssClass($options, $class);
}
}