-
Notifications
You must be signed in to change notification settings - Fork 17
/
delibera_themes.php
342 lines (298 loc) · 9.04 KB
/
delibera_themes.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
<?php
/**
* Controla os distintos temas do Delibera disponíveis.
*
* Os temas do Delibera podem ser salvos em dois lugares distintos.
* Na pasta themes dentro da pasta do plugin. Cada tema deve estar dentro
* de uma sub pasta cujo o nome é o nome do tema. Um tema do Delibera
* também pode ser salvo dentro de uma pasta chamada delibera dentro
* do tema atual do Wordpress.
*/
class DeliberaThemes
{
/**
* Diretório onde ficam os temas
* dentro do plugin
* @var string
*/
public $baseDir;
/**
* URL do diretório onde ficam
* os temas dentro do plugin
* @var string
*/
public $baseUrl;
/**
* Caminho para o diretório
* do tema padrão
* @var string
*/
public $defaultThemePath;
/**
* URL para o diretório do
* tema padrão
* @var string
*/
public $defaultThemeUrl;
/**
* Caminho para o tema do Delibera
* dentro do tema atual do WP.
* @var string
*/
public $wpThemePath;
/**
* Url para o diretório do tema do Delibera
* dentro do tema atual do WP
* @var string
*/
public $wpThemeUrl;
/**
* Nome do tema atual do Wordpress
* @var string
*/
public $wpThemeName;
function __construct()
{
$this->baseDir = __DIR__ . '/themes/';
$this->baseUrl = plugins_url('/delibera/themes/');
$this->defaultThemePath = $this->baseDir . 'atenas/';
$this->defaultThemeUrl = $this->baseUrl . 'atenas/';
$this->wpThemePath = get_stylesheet_directory() . '/delibera';
$this->wpThemeUrl = get_stylesheet_directory_uri() . '/delibera';
$this->wpThemeName = wp_get_theme()->get_stylesheet();
}
/**
* Retorna o diretório de um tema.
* Se não um nome de tema for passado como
* parâmetro, retorna o diretório do tema atual.
*
* @param string $themeName
* @return string
*/
public function getThemeDir($themeName = '')
{
if (!empty($themeName)) {
$themePath = $this->baseDir . $themeName;
} else {
$conf = delibera_get_config();
$themePath = $conf['theme'];
}
if (file_exists($themePath)) {
return $themePath;
} else {
return $this->defaultThemePath;
}
}
/**
* Retorna a URL para o diretório
* principal do tema atual.
*
* @return string
*/
public function getThemeUrl()
{
$conf = delibera_get_config();
if (file_exists($conf['theme'])) {
// TODO: melhorar a separacao entre tema distribuido junto com o plugin e tema do delibera dentro do tema do wp
if (strpos($conf['theme'], '/wp-content/themes') === false) {
// tema distribuido junto com o plugin
return $this->baseUrl . basename($conf['theme']);
} else {
// tema dentro do tema atual do wp
return $this->wpThemeUrl;
}
} else {
return $this->defaultThemeUrl;
}
}
/**
* Retorna o caminho no sistema de arquivos
* para um arquivo no tema atual. Se o arquivo
* não existir, retorna o caminho para o arquivo
* no tema padrão.
*
* @param string $file_name
* @return string
*/
public function themeFilePath($fileName)
{
$filePath = $this->getThemeDir() . '/' . $fileName;
if (file_exists($filePath)) {
return $filePath;
} else {
return $this->defaultThemePath . $fileName;
}
}
/**
* Retorna a url para um arquivo no tema atual.
* Se o arquivo não existir, retorna o caminho
* para o arquivo no tema padrão.
*
* @param string $file_name
* @return string
*/
public function themeFileUrl($fileName)
{
$filePath = $this->getThemeDir() . '/' . $fileName;
if (file_exists($filePath)) {
return $this->getThemeUrl() . '/' . $fileName;
} else {
return $this->defaultThemeUrl . $fileName;
}
}
/**
* Inclui os arquivos do tema relacionados com
* a listagem de pautas e retorna o template
* a ser usado.
*
* @param string $archiveTemplate
* @return string
*/
public function archiveTemplate($archiveTemplate)
{
global $post;
if (get_post_type($post) == "pauta" || is_post_type_archive('pauta'))
{
if(file_exists(get_stylesheet_directory()."/archive-pauta.php"))
{
$archive_template = get_stylesheet_directory()."/archive-pauta.php";
}
else
{
$archiveTemplate = $this->themeFilePath('archive-pauta.php');
}
}
return $archiveTemplate;
}
/**
* Inclui os arquivos do tema relacionados com
* a página de uma pauta e retorna o template
* a ser usado.
*
* @param string $singleTemplate
* @return string
*/
public function singleTemplate($singleTemplate)
{
global $post;
if (get_post_type($post) == "pauta" || is_post_type_archive('pauta'))
{
if(file_exists(get_stylesheet_directory()."/single-pauta.php"))
{
$singleTemplate = get_stylesheet_directory()."/single-pauta.php";
}
else
{
$singleTemplate = $this->themeFilePath('single-pauta.php');
}
}
return $singleTemplate;
}
/**
* Inclui os arquivos CSS
*
* @return null
*/
public function publicStyles()
{
global $post, $wp_query;
if (get_post_type($post) == "pauta" || is_post_type_archive('pauta') || $wp_query->get('tpl') === 'nova-pauta')
{
if(file_exists(get_stylesheet_directory()."/delibera_style.css"))
{
wp_enqueue_style('delibera_style', get_stylesheet_directory_uri()."/delibera_style.css");
}
else
{
wp_enqueue_style('delibera_style', $this->themeFileUrl('delibera_style.css'));
}
}
}
/**
* Adiciona o CSS do admin conforme o
* tema.
*
* @return null
*/
public function adminPrintStyles()
{
wp_enqueue_style('delibera_admin_style', $this->themeFileUrl('delibera_admin.css'));
}
/**
* Carrega o arquivo de template do loop
* de pautas para o tema atual. Se o arquivo
* não existir usa o arquivo do tema padrão.
*
* @return null
*/
public function archiveLoop()
{
if(file_exists(get_stylesheet_directory()."/loop-pauta.php"))
{
load_template(get_stylesheet_directory()."/loop-pauta.php");
}
else
{
load_template($this->themeFilePath('delibera-loop-archive.php'), true);
}
}
/**
* Retorna um array com os temas disponíveis.
*
* @return array
*/
public function getAvailableThemes()
{
$themes = array();
$dirs = glob($this->baseDir . '*', GLOB_ONLYDIR);
foreach ($dirs as $dir) {
$themes[$dir] = basename($dir);
}
// adiciona o tema do delibera de dentro do tema atual do wp se um existir
if (file_exists($this->wpThemePath)) {
$themes[$this->wpThemePath] = $this->wpThemeName;
}
return $themes;
}
/**
* Gera o select box com os temas disponíveis
* para a interface de admin do Delibera.
*
* @param string $currentTheme o tema atual
* @return string
*/
public function getSelectBox($currentTheme)
{
$themes = $this->getAvailableThemes();
$html = "<select name='theme' id='theme'>";
foreach ($themes as $themePath => $themeName) {
$html .= "<option value='{$themePath}'" . selected($themePath, $currentTheme, false) . ">{$themeName}</option>";
}
$html .= "</select>";
return $html;
}
}
$deliberaThemes = new DeliberaThemes;
add_filter('archive_template', array($deliberaThemes, 'archiveTemplate'));
add_filter('single_template', array($deliberaThemes, 'singleTemplate'));
add_action('admin_print_styles', array($deliberaThemes, 'adminPrintStyles'));
add_action('wp_enqueue_scripts', array($deliberaThemes, 'publicStyles'), 100);
// inclui arquivos específicos do tema
require_once($deliberaThemes->themeFilePath('functions.php'));
require_once($deliberaThemes->themeFilePath('delibera_comments_template.php'));
/**
* Usa o template de comentário do Delibera
* no lugar do padrão do Wordpress para as pautas
*
* @param string $path
* @return string
*/
function delibera_comments_template($path)
{
global $deliberaThemes;
if (get_post_type() == 'pauta') {
return $deliberaThemes->themeFilePath('delibera_comments.php');
}
return $path;
}
add_filter('comments_template', 'delibera_comments_template');