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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
<?php
/**
* @version $Revision: 1.11 $
* $Header: /cvsroot/bitweaver/_bit_liberty/plugins/data.img.php,v 1.11 2006/12/13 18:01:38 squareing Exp $
* @package liberty
* @subpackage plugins_data
*/
/**
* definitions
*/
define( 'PLUGIN_GUID_DATAIMG', 'dataimg' );
global $gLibertySystem;
$pluginParams = array (
'tag' => 'img',
'auto_activate' => TRUE,
'requires_pair' => FALSE,
'load_function' => 'data_img',
'title' => 'Image',
'help_page' => 'DataPluginImg',
'description' => tra( "Allows you to insert an image into your page with little effort and a multitude of styling options." ),
'help_function' => 'data_img_help',
'syntax' => "{img src=http://www.google.at/logos/olympics06_ski_jump.gif}",
'path' => LIBERTY_PKG_PATH.'plugins/data.img.php',
'security' => 'registered',
'plugin_type' => DATA_PLUGIN,
'biticon' => '{biticon iclass="quicktag icon" ipackage=quicktags iname=image iexplain="Image"}',
'taginsert' => '{img src= width= height= align= description= link=}'
);
$gLibertySystem->registerPlugin( PLUGIN_GUID_DATAIMG, $pluginParams );
$gLibertySystem->registerDataTag( $pluginParams['tag'], PLUGIN_GUID_DATAIMG );
function data_img_help() {
return
'<table class="data help">'
.'<tr>'
.'<th>'.tra( "Key" ).'</th>'
.'<th>'.tra( "Type" ).'</th>'
.'<th>'.tra( "Comments" ).'</th>'
.'</tr>'
.'<tr class="odd">'
.'<td>src</td>'
.'<td>'.tra( "string").'<br />'.tra("(required)").'</td>'
.'<td>'.tra( "Specify where the path to the image.").'</td>'
.'</tr>'
.'<tr class="even">'
.'<td>link</td>'
.'<td>'.tra( "string").'<br />'.tra("(optional)").'</td>'
.'<td>'.tra( "If you want your image to link to a web address, use link='link/to/page'." ).'</td>'
.'</tr>'
.'<tr class="odd">'
.'<td>'.tra( "styling" ).'</td>'
.'<td>'.tra( "string").'<br />'.tra("(optional)").'</td>'
.'<td>'.tra( "Multiple styling options available: padding, margin, background, border, text-align, color, font, font-size, font-weight, font-family, align. Please view CSS guidelines on what values these settings take.").'</td>'
.'</tr>'
.'</table>'
. tra( "Example: ")."{img src=http://www.google.at/logos/olympics06_ski_jump.gif float=right border=\"3px solid blue\"}";
}
function data_img( $pData, $pParams ) {
$div = liberty_plugins_div_style( $pParams );
$div['img_style'] = '';
foreach( $pParams as $key => $value ) {
if( !empty( $value ) ) {
switch( $key ) {
// rename a couple of parameters
case 'width':
case 'height':
if( preg_match( "/^\d+(em|px|%|pt)$/", $value ) ) {
$div['img_style'] .= $key.':'.$value.';';
} elseif( preg_match( "/^\d+$/", $value ) ) {
$div['img_style'] .= $key.':'.$value.'px;';
}
break;
}
}
}
// check if we have a source to load an image from
if( !empty( $div['src'] ) ) {
// set up image first
$alt = ( !empty( $div['description'] ) ? $div['description'] : tra( 'Image' ) );
$ret = '<img'.
' alt="'. $alt.'"'.
' title="'.$alt.'"'.
' src="' .$div['src'].'"'.
' style="'.$div['img_style'].'"'.
' />';
// if this image is linking to something, wrap the image with the <a>
if( !empty( $div['link'] ) ) {
$ret = '<a href="'.trim( $div['link'] ).'">'.$ret.'</a>';
}
// finally, wrap the image with a div
if( !empty( $div['style'] ) || !empty( $class ) || !empty( $div['description'] ) ) {
$ret = '<div class="'.( !empty( $div['class'] ) ? $div['class'] : "img-plugin" ).'" style="'.$div['style'].'">'.$ret.'<br />'.( !empty( $div['description'] ) ? $div['description'] : '' ).'</div>';
}
} else {
$ret = '<span class="warning">'.tra( 'When using <strong>{img}</strong> the <strong>src</strong> parameter is required.' ).'</span>';
}
return $ret;
}
?>
|