-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathplxMyContact.php
executable file
·183 lines (157 loc) · 5.42 KB
/
plxMyContact.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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<?php
/**
* Plugin plxMyContact
* @author Stephane F
**/
class plxMyContact extends plxPlugin {
private $url = ''; # parametre de l'url pour accèder à la page de contact
public $lang = '';
/**
* Constructeur de la classe
*
* @param default_lang langue par défaut
* @return stdio
* @author Stephane F
**/
public function __construct($default_lang) {
# gestion du multilingue plxMyMultiLingue
if(preg_match('/([a-z]{2})\/(.*)/i', plxUtils::getGets(), $capture)) {
$this->lang = $capture[1].'/';
}
# appel du constructeur de la classe plxPlugin (obligatoire)
parent::__construct($default_lang);
$this->url = $this->getParam('url')=='' ? 'contact' : $this->getParam('url');
# droits pour accèder à la page config.php du plugin
$this->setConfigProfil(PROFIL_ADMIN);
# déclaration des hooks
$this->addHook('AdminTopEndHead', 'AdminTopEndHead');
$this->addHook('AdminTopBottom', 'AdminTopBottom');
# Si le fichier de langue existe on peut mettre en place la partie visiteur
if(file_exists(PLX_PLUGINS.$this->plug['name'].'/lang/'.$default_lang.'.php')) {
if(plxUtils::checkMail($this->getParam('email'))) {
$this->addHook('plxMotorPreChauffageBegin', 'plxMotorPreChauffageBegin');
$this->addHook('plxShowConstruct', 'plxShowConstruct');
$this->addHook('plxShowStaticListEnd', 'plxShowStaticListEnd');
$this->addHook('plxShowPageTitle', 'plxShowPageTitle');
$this->addHook('SitemapStatics', 'SitemapStatics');
}
}
}
/**
* Méthode qui charge le code css nécessaire à la gestion de onglet dans l'écran de configuration du plugin
*
* @return stdio
* @author Stephane F
**/
public function AdminTopEndHead() {
if(basename($_SERVER['SCRIPT_NAME'])=='parametres_plugin.php') {
echo '<link href="'.PLX_PLUGINS.$this->plug['name'].'/tabs/style.css" rel="stylesheet" type="text/css" />'."\n";
}
}
/**
* Méthode qui affiche un message si l'adresse email du contact n'est pas renseignée
*
* @return stdio
* @author Stephane F
**/
public function AdminTopBottom() {
echo '<?php
if($plxAdmin->plxPlugins->aPlugins["plxMyContact"]->getParam("email")=="") {
echo "<p class=\"warning\">Plugin MyContact<br />'.$this->getLang("L_ERR_EMAIL").'</p>";
plxMsg::Display();
}
?>';
echo '<?php
$file = PLX_PLUGINS."plxMyContact/lang/".$plxAdmin->aConf["default_lang"].".php";
if(!file_exists($file)) {
echo "<p class=\"warning\">Plugin MyContact<br />".sprintf("'.$this->getLang('L_LANG_UNAVAILABLE').'", $file)."</p>";
plxMsg::Display();
}
?>';
}
/**
* Méthode de traitement du hook plxShowConstruct
*
* @return stdio
* @author Stephane F
**/
public function plxShowConstruct() {
# infos sur la page statique
$string = "if(\$this->plxMotor->mode=='".$this->url."') {";
$string .= " \$array = array();";
$string .= " \$array[\$this->plxMotor->cible] = array(
'name' => '".addslashes($this->getParam('mnuName_'.$this->default_lang))."',
'menu' => '',
'url' => 'contact',
'readable' => 1,
'active' => 1,
'group' => ''
);";
$string .= " \$this->plxMotor->aStats = array_merge(\$this->plxMotor->aStats, \$array);";
$string .= "}";
echo "<?php ".$string." ?>";
}
/**
* Méthode de traitement du hook plxMotorPreChauffageBegin
*
* @return stdio
* @author Stephane F
**/
public function plxMotorPreChauffageBegin() {
$template = $this->getParam('template')==''?'static.php':$this->getParam('template');
$string = "
if(\$this->get && preg_match('/^".$this->url."\/?/',\$this->get)) {
\$this->mode = '".$this->url."';
\$prefix = str_repeat('../', substr_count(trim(PLX_ROOT.\$this->aConf['racine_statiques'], '/'), '/'));
\$this->cible = \$prefix.'plugins/plxMyContact/form';
\$this->template = '".$template."';
return true;
}
";
echo "<?php ".$string." ?>";
}
/**
* Méthode de traitement du hook plxShowStaticListEnd
*
* @return stdio
* @author Stephane F
**/
public function plxShowStaticListEnd() {
# ajout du menu pour accèder à la page de contact
if($this->getParam('mnuDisplay')) {
echo "<?php \$status = \$this->plxMotor->mode=='".$this->url."'?'active':'noactive'; ?>";
echo "<?php array_splice(\$menus, ".($this->getParam('mnuPos')-1).", 0, '<li class=\"static menu '.\$status.'\" id=\"static-contact\"><a href=\"'.\$this->plxMotor->urlRewrite('?".$this->lang.$this->url."').'\" title=\"".addslashes($this->getParam('mnuName_'.$this->default_lang))."\">".addslashes($this->getParam('mnuName_'.$this->default_lang))."</a></li>'); ?>";
}
}
/**
* Méthode qui rensigne le titre de la page dans la balise html <title>
*
* @return stdio
* @author Stephane F
**/
public function plxShowPageTitle() {
echo '<?php
if($this->plxMotor->mode == "'.$this->url.'") {
$this->plxMotor->plxPlugins->aPlugins["plxMyContact"]->lang("L_PAGE_TITLE");
return true;
}
?>';
}
/**
* Méthode qui référence la page de contact dans le sitemap
*
* @return stdio
* @author Stephane F
**/
public function SitemapStatics() {
echo '<?php
echo "\n";
echo "\t<url>\n";
echo "\t\t<loc>".$plxMotor->urlRewrite("?'.$this->lang.$this->url.'")."</loc>\n";
echo "\t\t<changefreq>monthly</changefreq>\n";
echo "\t\t<priority>0.8</priority>\n";
echo "\t</url>\n";
?>';
}
}
?>