mirror of
https://github.com/ulaulaman/eduinaf.git
synced 2024-12-16 16:29:04 +01:00
semplificazione del codice con require_once
This commit is contained in:
parent
e30cb4c3c6
commit
6cc028611c
150
eduinaf.php
150
eduinaf.php
@ -1,8 +1,8 @@
|
||||
<?php
|
||||
/*
|
||||
Plugin Name: Edu INAF Plugin
|
||||
Plugin Name: Edu INAF Tools
|
||||
Description: Il plugin aggiunge varie funzionalità al sito Edu INAF senza modificare direttamente il codice php del tema.
|
||||
Version: 0.9.6
|
||||
Version: 201802.1
|
||||
Author: Gianluigi Filippelli
|
||||
Author URI: http://dropseaofulaula.blogspot.it/
|
||||
Plugin URI: https://ulaulaman.github.io/eduinaf/
|
||||
@ -10,26 +10,16 @@ GitHub Plugin URI: https://github.com/ulaulaman/eduinaf
|
||||
License: GPLv2 or later
|
||||
*/
|
||||
/* ------------------------------------------------------ */
|
||||
# menu plugin
|
||||
/** Aggiunta del menu */
|
||||
add_action( 'admin_menu', 'eduinaf_menu' );
|
||||
|
||||
/** Creazione del menu come sottovoce della dashboard */
|
||||
function eduinaf_menu() {
|
||||
add_dashboard_page( 'Edu INAF Plugin: pagina di documentazione', 'Edu INAF', 'manage_options', 'eduinaf-top-level-handle', 'eduinaf_toplevel_page' );
|
||||
}
|
||||
|
||||
/** Creazione della pagina di documentazione */
|
||||
function eduinaf_toplevel_page() {
|
||||
echo '<h2>Edu INAF Plugin</h2>';
|
||||
echo '<div class="wrap">';
|
||||
echo '<p>Il plugin aggiunge varie funzionalità al sito Edu INAF senza modificare direttamente il codice php del tema.<br/>In particolare sono presenti gli shortcode per la creazione automatica dei link alle attività astroedu e alle notizie spacescoop. In particolare lo shortcode utilizza due parametri, il codice dell\'attività/news e la lingua</p>';
|
||||
echo '<p><strong>Uso degli shortcode</strong>:</p>';
|
||||
echo '<p>[astroedu code="..." lang="..."]</p>';
|
||||
echo '<p>[spacescoop code="..." lang="..."]<br/>';
|
||||
echo '<p>Entrambi i parametri sono obbligatori per il corretto funzionamento dello shortcode.</p>';
|
||||
echo '</div>';
|
||||
}
|
||||
# inclusione file
|
||||
define( 'EDUINAF__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
||||
# pagina di descrizione
|
||||
require_once( EDUINAF__PLUGIN_DIR . 'incl/menu.php' );
|
||||
# manipolazione feed
|
||||
require_once( EDUINAF__PLUGIN_DIR . 'incl/feed.php' );
|
||||
# contacaratteri
|
||||
require_once( EDUINAF__PLUGIN_DIR . 'incl/conta.php' );
|
||||
# creazione link: astroedu, spacescoop
|
||||
require_once( EDUINAF__PLUGIN_DIR . 'link/link.php' );
|
||||
|
||||
# messaggio nell'admin footer
|
||||
function remove_footer_admin () {
|
||||
@ -40,38 +30,6 @@ echo 'Benvenuto su <a href="http://edu.inaf.it/" target="inaf">Edu INAF</a> | Si
|
||||
|
||||
add_filter('admin_footer_text', 'remove_footer_admin');
|
||||
|
||||
# manipolazione del feed rss
|
||||
# aggiunta delle attività didattiche
|
||||
function myfeed_request($qv) {
|
||||
if (isset($qv['feed']) && !isset($qv['post_type']))
|
||||
$qv['post_type'] = array('post', 'attivita_didattica');
|
||||
return $qv;
|
||||
}
|
||||
add_filter('request', 'myfeed_request');
|
||||
|
||||
# aggiunta dell'immagine in evidenza
|
||||
function rss_post_thumbnail($content) {
|
||||
global $post;
|
||||
if(has_post_thumbnail($post->ID)) {
|
||||
$content = '<p>' . get_the_post_thumbnail($post->ID) .
|
||||
'</p>' . get_the_excerpt();
|
||||
}
|
||||
return $content;
|
||||
}
|
||||
add_filter('the_excerpt_rss', 'rss_post_thumbnail');
|
||||
add_filter('the_content_feed', 'rss_post_thumbnail');
|
||||
|
||||
# aggiunta autori in apertura e messaggio di chiusura per post nel feed
|
||||
function eduinaf_postrss($content) {
|
||||
$coauthors = coauthors_posts_links(", ", " e ", null, null, false);
|
||||
if(is_feed()){
|
||||
$content = '<p>Questo articolo è stato scritto da '.$coauthors.'</p>'.$content.'<p>Leggi Edu INAF</p>';
|
||||
}
|
||||
return $content;
|
||||
}
|
||||
add_filter('the_excerpt_rss', 'eduinaf_postrss');
|
||||
add_filter('the_content', 'eduinaf_postrss');
|
||||
|
||||
# Aggiunta del logo e modifica del link nella pagina di login
|
||||
function custom_login_logo() {
|
||||
echo '<style type="text/css">
|
||||
@ -89,89 +47,5 @@ function eduinaf_login_logo_url_title() {
|
||||
return 'Edu INAF';
|
||||
}
|
||||
add_filter( 'login_headertitle', 'eduinaf_login_logo_url_title' );
|
||||
|
||||
# Contacaratteri
|
||||
# Excerpt/Riassunto
|
||||
function excerpt_count_js(){
|
||||
|
||||
if ('page' != get_post_type()) {
|
||||
|
||||
echo '<script>jQuery(document).ready(function(){
|
||||
jQuery("#postexcerpt .handlediv").after("<div style=\"position:absolute;top:12px;right:34px;color:#666;\"><small>Numero caratteri: </small><span id=\"excerpt_counter\"></span><span style=\"font-weight:bold; padding-left:7px;\">/ 500</span><small><span style=\"font-weight:bold; padding-left:7px;\">caratteri.</span></small></div>");
|
||||
jQuery("span#excerpt_counter").text(jQuery("#excerpt").val().length);
|
||||
jQuery("#excerpt").keyup( function() {
|
||||
if(jQuery(this).val().length > 500){
|
||||
jQuery(this).val(jQuery(this).val().substr(0, 500));
|
||||
}
|
||||
jQuery("span#excerpt_counter").text(jQuery("#excerpt").val().length);
|
||||
});
|
||||
});</script>';
|
||||
}
|
||||
}
|
||||
add_action( 'admin_head-post.php', 'excerpt_count_js');
|
||||
add_action( 'admin_head-post-new.php', 'excerpt_count_js');
|
||||
|
||||
# Content/Contenuto
|
||||
function content_char_count() {
|
||||
?>
|
||||
<script type="text/javascript">
|
||||
(function($) {
|
||||
wpCharCount = function(txt) {
|
||||
$('.char-count').html("" + txt.length);
|
||||
};
|
||||
$(document).ready(function() {
|
||||
$('#wp-word-count').append('<br />Numero caratteri: <span class="char-count">0</span>');
|
||||
}).bind( 'wpcountwords', function(e, txt) {
|
||||
wpCharCount(txt);
|
||||
});
|
||||
$('#content').bind('keyup', function() {
|
||||
wpCharCount($('#content').val());
|
||||
});
|
||||
}(jQuery));
|
||||
</script>
|
||||
<?php
|
||||
}
|
||||
add_action('dbx_post_sidebar', 'content_char_count');
|
||||
|
||||
# Citazioni e link automatici
|
||||
# Astroedu
|
||||
add_shortcode('astroedu', 'astroedu');
|
||||
|
||||
function astroedu ($atts, $content = null) {
|
||||
|
||||
extract(
|
||||
shortcode_atts(
|
||||
array(
|
||||
'lang' => null,
|
||||
'code' => null,
|
||||
),
|
||||
$atts
|
||||
)
|
||||
);
|
||||
|
||||
$link = '<a href="http://astroedu.iau.org/'.$lang.'/activities/'.$code.'/" target="astroedu">'.$content.'</a>';
|
||||
|
||||
return $link;
|
||||
}
|
||||
|
||||
# spacescoop
|
||||
add_shortcode('spacescoop', 'spacescoop');
|
||||
|
||||
function spacescoop ($atts, $content = null) {
|
||||
|
||||
extract(
|
||||
shortcode_atts(
|
||||
array(
|
||||
'lang' => null,
|
||||
'code' => null,
|
||||
),
|
||||
$atts
|
||||
)
|
||||
);
|
||||
|
||||
$link = '<a href="http://www.spacescoop.org/'.$lang.'/scoops/'.$code.'/" target="spacescoop">'.$content.'</a>';
|
||||
|
||||
return $link;
|
||||
}
|
||||
/* ------------------------------------------------------ */
|
||||
?>
|
||||
|
Loading…
Reference in New Issue
Block a user