-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelper.php
More file actions
66 lines (65 loc) · 1.46 KB
/
helper.php
File metadata and controls
66 lines (65 loc) · 1.46 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
/**
* Polaroid Boxes Module
*
* Helper Class
*/
class modPolaroidBoxesHelper
{
/**
* Texte affiché sur la Polaroid
*
* @param array $params An object containing the module parameters
* @access public
*/
public static function getBoxText( $params )
{
$text = $params->get('polaroid_text', '');
return $text;
}
/**
* Angle du polaroid
*
* @param array $params An object containing the module parameters
* @access public
*/
public static function getAngle( $params )
{
$angle = $params->get('polaroid_angle', 0);
return $angle;
}
/**
* URL de l'image
*
* @param array $params An object containing the module parameters
* @access public
*/
public static function getImg( $params )
{
$img = $params->get('polaroid_img', '');
return $img;
}
/**
* Message alternatif au sein de l'image
*
* @param array $params An object containing the module parameters
* @access public
*/
public static function getAltText( $params )
{
$imgalt = $params->get('polaroid_img_alt', '');
return $imgalt;
}
/**
* URL du lien
*
* @param array $params An object containing the module parameters
* @access public
*/
public static function getLink( $params )
{
$link = $params->get('polaroid_link', '#');
return $link;
}
}
?>