-
Notifications
You must be signed in to change notification settings - Fork 7
/
functions.php
385 lines (325 loc) · 11.2 KB
/
functions.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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
<?php
$cores_eixos_array = array(
"#FF1212",
"#984444",
"#FF7112",
"#FFA012",
"#986644",
"#FFFF12",
"#987644",
"#988744",
"#B2E710",
"#0FD00F",
"#989844",
"#7C9040",
"#3C873C",
"#0F9FD0",
"#0F5FD0",
"#2F0FD0",
"#3C7587",
"#3C5C87",
"#8F0FD0",
"#493C87",
"#6E3C87",
"#DB0F86",
"#8B3E6B"
);
add_action( 'wp_enqueue_scripts', 'dadospessoais_scripts' );
function dadospessoais_scripts() {
wp_enqueue_script( 'dadospessoais', get_stylesheet_directory_uri() . '/js/dadospessoais.js', array( 'jquery' ) );
$var_plataforma = array();
$var_plataforma['signup_url'] = wp_registration_url();
$var_plataforma['login_url'] = wp_login_url();
$var_plataforma['configs'] = array(
'ajaxurl' => admin_url( 'admin-ajax.php' ),
'ajaxgif' => get_template_directory_uri() . '/images/ajax-loader.gif'
);
wp_localize_script( 'dadospessoais', 'dadosPessoais', $var_plataforma );
}
add_action( 'admin_enqueue_scripts', 'dadospessoais_admin_scripts' );
function dadospessoais_admin_scripts() {
wp_enqueue_script( 'dadospessoais', get_stylesheet_directory_uri() . '/js/dadospessoais-admin.js', array( 'jquery' ) );
$var_plataforma = array();
$var_plataforma['ajaxurl'] = admin_url( 'admin-ajax.php' );
$var_plataforma['ajaxgif'] = get_template_directory_uri() . '/images/ajax-loader.gif';
wp_localize_script( 'dadospessoais', 'dadosPessoais', $var_plataforma );
}
// Registro do Custom Post Type "Texto de Debate"
function dados_pessoais_post_types() {
$labels_eixo = array(
'name' => _x( 'Eixos de debate', 'Eixos de debate', 'dadospessoais' ),
'singular_name' => _x( 'Eixo de debate', 'Texto em discussão', 'dadospessoais' ),
'menu_name' => __( 'Eixos de debate', 'dadospessoais' ),
'parent_item_colon' => __( 'Eixo pai:', 'dadospessoais' ),
'all_items' => __( 'Todos os eixos', 'dadospessoais' ),
'view_item' => __( 'Ver eixo', 'dadospessoais' ),
'add_new_item' => __( 'Adicionar eixo', 'dadospessoais' ),
'add_new' => __( 'Novo', 'dadospessoais' ),
'edit_item' => __( 'Editar eixo', 'dadospessoais' ),
'update_item' => __( 'Atualizar eixo', 'dadospessoais' ),
'search_items' => __( 'Procurar eixo', 'dadospessoais' ),
'not_found' => __( 'Não encontrado', 'dadospessoais' ),
'not_found_in_trash' => __( 'Não encontrado na lixeira', 'dadospessoais' ),
);
$args_eixo = array(
'label' => __( 'Eixos de debate', 'dadospessoais' ),
'description' => __( 'Eixo do debate público', 'dadospessoais' ),
'labels' => $labels_eixo,
'supports' => array(
'title',
'editor',
'author',
'excerpt',
'trackbacks',
'comments',
'revisions',
'page-attributes'
),
'hierarchical' => false,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => true,
'show_in_admin_bar' => true,
'menu_position' => 5,
'can_export' => true,
'has_archive' => true,
'exclude_from_search' => false,
'publicly_queryable' => true,
'capability_type' => 'page',
'rewrite' => true,
'permalink_epmask' => 'EP_PERMALINK ',
'query_var' => true,
'register_meta_box_cb' => 'dadospessoais_eixo_metaboxes'
);
register_post_type( 'eixo-de-debate', $args_eixo );
}
add_action( 'init', 'dados_pessoais_post_types', 10, 2 );
/**
* Inclusão de metaboxes para os eixos
*/
function dadospessoais_eixo_metaboxes() {
add_meta_box( 'dadospessoais_cores_eixo', 'Cor para o eixo', 'dadospessoais_cor_eixo_metabox', 'eixo-de-debate', 'normal', 'default' );
}
/**
* Metabox de cor para eixo
*/
function dadospessoais_cor_eixo_metabox() {
global $post, $cores_eixos_array;
// Verificação do noncename
echo '<input type="hidden" name="cormeta_noncename" id="cormeta_noncename" value="' .
wp_create_nonce( plugin_basename( __FILE__ ) ) . '" />';
?>
<script>
(function ($) {
$(document).ready(function () {
$('label.color-label').change(function () {
$('.color-label span.active').removeClass('active');
$(this).find('span.color').addClass('active');
});
});
})(jQuery);
</script>
<style>
span.color {
border: 2px solid transparent;
display: inline-block;
margin: 11px;
}
span.color.active {
border: 2px solid black;
}
</style>
<?php
$cor_selecionada = get_post_meta( $post->ID, '_cor_eixo', true );
foreach ( $cores_eixos_array as $cor ):
?>
<label class="color-label">
<input type="radio" class="cl_color" name="_cor_eixo"
style="display:none" <?php if ( $cor_selecionada == $cor ) {
echo 'checked="checked"';
} ?> value="<?php echo $cor; ?>"/>
<span style="background:<?php echo $cor ?>; width:20px; height:20px; "
class="color<?php if ( $cor_selecionada == $cor ) {
echo ' active"';
} ?>"></span>
</label>
<?php endforeach;
}
/**
* Função para salvar a cor selecionada no metabox de seleção de cor do eixo
*
* @param $post_id
* @param $post
*
* @return mixed
*/
function dadospessoais_salvar_cor_meta( $post_id, $post ) {
if ( ! isset( $_POST['cormeta_noncename'] ) ) {
return $post->ID;
}
// Verificação do nonce
if ( ! wp_verify_nonce( $_POST['cormeta_noncename'], plugin_basename( __FILE__ ) ) ) {
return $post->ID;
}
// O usuário tem permissão de edição de página?
if ( ! current_user_can( 'edit_page', $post->ID ) ) {
return $post->ID;
}
$cor_eixo = $_POST['_cor_eixo'];
update_post_meta( $post->ID, '_cor_eixo', $cor_eixo );
}
add_action( 'save_post', 'dadospessoais_salvar_cor_meta', 1, 2 ); // save the custom fields
/**
* Obtem o índice (table of contents) de um conteúdo html passado
*
* @param $content
*
* @return string
*/
function dadospessoais_get_toc( $content ) {
$matches = array();
$output = "";
if ( preg_match_all( '/(<h([1-6]{1})[^>]*)>(.*)<\/h\2>/msuU', $content, $matches, PREG_SET_ORDER ) ) {
$output .= "<ul>";
$level = 1;
foreach ( $matches as $match ) {
$item_toc = '<li><a href="#' . dadospessoais_slugfy( $match[3] ) . '">' . $match[3] . '</a></li>';
if ( $match[2] > $level ) {
for ( ; $level < $match[2]; $level ++ ) {
$output .= "<li><ul>";
$output .= $item_toc;
}
} elseif ( $match[2] < $level ) {
for ( ; $level > $match[2]; $level -- ) {
$output .= "</li></ul>";
}
$output .= $item_toc;
} else {
$output .= $item_toc;
}
}
$output .= "</ul>";
}
return $output;
}
/**
* Gera slug de um texto aleatório
*
* @param $text
*
* @return mixed|string
*/
function dadospessoais_slugfy( $text ) {
// replace non letter or digits by -
$text = preg_replace( '~[^\\pL\d]+~u', '-', $text );
// trim
$text = trim( $text, '-' );
// transliterate
$text = iconv( 'utf-8', 'us-ascii//TRANSLIT', $text );
// lowercase
$text = strtolower( $text );
// remove unwanted characters
$text = preg_replace( '~[^-\w]+~', '', $text );
if ( empty( $text ) ) {
return 'n-a';
}
return $text;
}
/**
* Função para recuperar post a partir do seu slug
*
* @param $page_slug
* @param string $output
* @param string $post_type
*
* @return null|WP_Post
*/
function dadospessoais_get_by_slug( $page_slug, $output = OBJECT, $post_type = 'page' ) {
global $wpdb;
$page = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_name = %s AND post_type= %s", $page_slug, $post_type ) );
if ( $page ) {
return get_post( $page, $output );
}
return null;
}
/**
* Função para incluir metas no header do dadospessoais
*/
function dadospessoais_meta_headers() {
?>
<meta name="google-site-verification" content="BsLDGuqe43xz3qpURHjNWLVhQ7qI-Ps8VX2DB1lEbxA"/>
<?php
}
add_action( 'wp_head', 'dadospessoais_meta_headers' );
/**
* Função para obter o link da página de informação em inglês
*/
function dadospessoais_get_english_information_link() {
$page_english = dadospessoais_get_by_slug( 'english-information' );
return get_permalink( $page_english );
}
/**
* Obtem o objeto page do anteprojeto
*/
function dadospessoais_get_anteprojeto_page() {
return dadospessoais_get_by_slug( 'anteprojeto-de-lei-para-a-protecao-de-dados-pessoais', OBJECT, 'texto-em-debate' );
}
/**
* Adicionando MetaBoxes na área de admin para gerenciar os PDFs enviados como contribuições
*/
add_action( 'add_meta_boxes', 'dadospessoais_exibicao_metabox' );
function dadospessoais_exibicao_metabox() {
add_meta_box( 'contribuicoes-pdf', 'Contribuições em PDF', 'dadospessoais_contribuicoes_render', 'texto-em-debate', 'side', 'core' );
}
function dadospessoais_contribuicoes_render( $post ) {
$pdf_contribution_list = get_post_meta( $post->ID, 'pdf_contribution_list', true );
if ( $pdf_contribution_list ) {
$counter = 1;
foreach ( $pdf_contribution_list as $key => $pdf_contribution ) {
?>
<p id="delete_pdf_key_<?php echo $key; ?>">
<b>Contribuição <?php echo $counter; ?></b>
<input type="button" class="ed_button button button-small"
onclick="deletar_pdf(<?php echo $key; ?>, <?php echo $post->ID; ?>)" value="Deletar"/><br/>
Autor:<br/>
<input type="text" value="<?php echo $pdf_contribution['author']; ?>"
id="autor_contribuicao_<?php echo $key ?>"/><br/>
Email:<br/>
<input type="email"
value="<?php echo isset( $pdf_contribution['email'] ) ? $pdf_contribution['email'] : ''; ?>"
id="email_contribuicao_<?php echo $key ?>"/>
<input type="button" class="ed_button button button-small" value="OK"
onclick="altera_autor_pdf(<?php echo $key; ?>, <?php echo $post->ID; ?>, jQuery('#autor_contribuicao_<?php echo $key; ?>').val(), jQuery('#email_contribuicao_<?php echo $key; ?>').val())"></br>
<a href="<?php echo $pdf_contribution['pdf_url']; ?>">Contribuição</a>
</p>
<hr/>
<?php
$counter ++;
}
}
}
function dadospessoais_remove_pdf_callback() {
$pdf_contribution_list = get_post_meta( $_POST['post_ID'], 'pdf_contribution_list', true );
$base_upload_path = wp_upload_dir();
unlink( $base_upload_path['basedir'] . explode( $base_upload_path['baseurl'], $pdf_contribution_list[ $_POST['chave'] ]['pdf_url'] )[1] );
unset( $pdf_contribution_list[ $_POST['chave'] ] );
update_post_meta( $_POST['post_ID'], 'pdf_contribution_list', $pdf_contribution_list );
}
add_action( 'wp_ajax_dadospessoais_remove_pdf', 'dadospessoais_remove_pdf_callback' );
function dadospessoais_altera_autor_pdf_callback() {
$pdf_contribution_list = get_post_meta( $_POST['post_ID'], 'pdf_contribution_list', true );
$pdf_contribution_list[ $_POST['chave'] ]['author'] = $_POST['novo_autor'];
$pdf_contribution_list[ $_POST['chave'] ]['email'] = $_POST['novo_email'];
update_post_meta( $_POST['post_ID'], 'pdf_contribution_list', $pdf_contribution_list );
}
add_action( 'wp_ajax_dadospessoais_altera_autor_pdf', 'dadospessoais_altera_autor_pdf_callback' );
// Get the proper template for post type texto-em-debate in this theme
function get_texto_em_debate_template( $single_template ) {
global $post;
if ( $post->post_type == 'texto-em-debate' ) {
$single_template = plugin_dir_path( __FILE__ ) . 'single-texto-em-debate.php';
}
return $single_template;
}
add_filter( 'single_template', 'get_texto_em_debate_template', 11 );