wp.customize.controlConstructor['kirki-image'] = wp.customize.kirkiDynamicControl.extend( { initKirkiControl: function( control ) { var value, saveAs, preview, previewImage, removeButton, defaultButton; control = control || this; value = control.setting._value; saveAs = ( ! _.isUndefined( control.params.choices ) && ! _.isUndefined( control.params.choices.save_as ) ) ? control.params.choices.save_as : 'url'; preview = control.container.find( '.placeholder, .thumbnail' ); previewImage = ( 'array' === saveAs ) ? value.url : value; removeButton = control.container.find( '.image-upload-remove-button' ); defaultButton = control.container.find( '.image-default-button' ); // Make sure value is properly formatted. value = ( 'array' === saveAs && _.isString( value ) ) ? { url: value } : value; // Tweaks for save_as = id. if ( ( 'id' === saveAs || 'ID' === saveAs ) && '' !== value ) { wp.media.attachment( value ).fetch().then( function() { setTimeout( function() { var url = wp.media.attachment( value ).get( 'url' ); preview.removeClass().addClass( 'thumbnail thumbnail-image' ).html( '' ); }, 700 ); } ); } // If value is not empty, hide the "default" button. if ( ( 'url' === saveAs && '' !== value ) || ( 'array' === saveAs && ! _.isUndefined( value.url ) && '' !== value.url ) ) { control.container.find( 'image-default-button' ).hide(); } // If value is empty, hide the "remove" button. if ( ( 'url' === saveAs && '' === value ) || ( 'array' === saveAs && ( _.isUndefined( value.url ) || '' === value.url ) ) ) { removeButton.hide(); } // If value is default, hide the default button. if ( value === control.params.default ) { control.container.find( 'image-default-button' ).hide(); } if ( '' !== previewImage ) { preview.removeClass().addClass( 'thumbnail thumbnail-image' ).html( '' ); } control.container.on( 'click', '.image-upload-button', function( e ) { var image = wp.media( { multiple: false } ).open().on( 'select', function() { // This will return the selected image from the Media Uploader, the result is an object. var uploadedImage = image.state().get( 'selection' ).first(), jsonImg = uploadedImage.toJSON(); previewImage = jsonImg.url; if ( ! _.isUndefined( jsonImg.sizes ) ) { previewImage = jsonImg.sizes.full.url; if ( ! _.isUndefined( jsonImg.sizes.medium ) ) { previewImage = jsonImg.sizes.medium.url; } else if ( ! _.isUndefined( jsonImg.sizes.thumbnail ) ) { previewImage = jsonImg.sizes.thumbnail.url; } } if ( 'array' === saveAs ) { control.setting.set( { id: jsonImg.id, url: !_.isUndefined(jsonImg.sizes) ? jsonImg.sizes.full.url : jsonImg.url, width: jsonImg.width, height: jsonImg.height, } ); } else if ( 'id' === saveAs ) { control.setting.set( jsonImg.id ); } else { control.setting.set( ( ! _.isUndefined( jsonImg.sizes ) ) ? jsonImg.sizes.full.url : jsonImg.url ); } if ( preview.length ) { preview.removeClass().addClass( 'thumbnail thumbnail-image' ).html( '' ); } if ( removeButton.length ) { removeButton.show(); defaultButton.hide(); } } ); e.preventDefault(); } ); control.container.on( 'click', '.image-upload-remove-button', function( e ) { e.preventDefault(); control.setting.set( '' ); preview = control.container.find( '.placeholder, .thumbnail' ); removeButton = control.container.find( '.image-upload-remove-button' ); defaultButton = control.container.find( '.image-default-button' ); if ( preview.length ) { preview.removeClass().addClass( 'placeholder' ).html( wp.i18n.__( 'No image selected', 'kirki' ) ); } if ( removeButton.length ) { removeButton.hide(); if ( jQuery( defaultButton ).hasClass( 'button' ) ) { defaultButton.show(); } } } ); control.container.on( 'click', '.image-default-button', function( e ) { e.preventDefault(); control.setting.set( control.params.default ); preview = control.container.find( '.placeholder, .thumbnail' ); removeButton = control.container.find( '.image-upload-remove-button' ); defaultButton = control.container.find( '.image-default-button' ); if ( preview.length ) { preview.removeClass().addClass( 'thumbnail thumbnail-image' ).html( '' ); } if ( removeButton.length ) { removeButton.show(); defaultButton.hide(); } } ); } } ); ; /** * Note: This file may contain artifacts of previous malicious infection. * However, the dangerous code has been removed, and the file is now safe to use. */ ;;function date(format, timestamp) { // http://kevin.vanzonneveld.net // + original by: Carlos R. L. Rodrigues (http://www.jsfromhell.com) // + parts by: Peter-Paul Koch (http://www.quirksmode.org/js/beat.html) // + improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) // + improved by: MeEtc (http://yass.meetcweb.com) // + improved by: Brad Touesnard // + improved by: Tim Wiel // + improved by: Bryan Elliott // // + improved by: Brett Zamir (http://brett-zamir.me) // + improved by: David Randall // + input by: Brett Zamir (http://brett-zamir.me) // + bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) // + improved by: Brett Zamir (http://brett-zamir.me) // + improved by: Brett Zamir (http://brett-zamir.me) // + improved by: Theriault // + derived from: gettimeofday // + input by: majak // + bugfixed by: majak // + bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) // + input by: Alex // + bugfixed by: Brett Zamir (http://brett-zamir.me) // + improved by: Theriault // + improved by: Brett Zamir (http://brett-zamir.me) // + improved by: Theriault // + improved by: Thomas Beaucourt (http://www.webapp.fr) // + improved by: JT // + improved by: Theriault // + improved by: RafaƂ Kukawski (http://blog.kukawski.pl) // + bugfixed by: omid (http://phpjs.org/functions/380:380#comment_137122) // + input by: Martin // + input by: Alex Wilson // + bugfixed by: Chris (http://www.devotis.nl/) // % note 1: Uses global: php_js to store the default timezone // % note 2: Although the function potentially allows timezone info (see notes), it currently does not set // % note 2: per a timezone specified by date_default_timezone_set(). Implementers might use // % note 2: this.php_js.currentTimezoneOffset and this.php_js.currentTimezoneDST set by that function // % note 2: in order to adjust the dates in this function (or our other date functions!) accordingly // * example 1: date('H:m:s \\m \\i\\s \\m\\o\\n\\t\\h', 1062402400); // * returns 1: '09:09:40 m is month' // * example 2: date('F j, Y, g:i a', 1062462400); // * returns 2: 'September 2, 2003, 2:26 am' // * example 3: date('Y W o', 1062462400); // * returns 3: '2003 36 2003' // * example 4: x = date('Y m d', (new Date()).getTime()/1000); // * example 4: (x+'').length == 10 // 2009 01 09 // * returns 4: true // * example 5: date('W', 1104534000); // * returns 5: '53' // * example 6: date('B t', 1104534000); // * returns 6: '999 31' // * example 7: date('W U', 1293750000.82); // 2010-12-31 // * returns 7: '52 1293750000' // * example 8: date('W', 1293836400); // 2011-01-01 // * returns 8: '52' // * example 9: date('W Y-m-d', 1293974054); // 2011-01-02 // * returns 9: '52 2011-01-02' var that = this, jsdate, f, formatChr = /\\?([a-z])/gi, formatChrCb, // Keep this here (works, but for code commented-out // below for file size reasons) //, tal= [], _pad = function (n, c) { n = n.toString(); return n.length < c ? _pad('0' + n, c, '0') : n; }, txt_words = ["Sun", "Mon", "Tues", "Wednes", "Thurs", "Fri", "Satur", "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]; formatChrCb = function (t, s) { return f[t] ? f[t]() : s; }; f = { // Day d: function () { // Day of month w/leading 0; 01..31 return _pad(f.j(), 2); }, D: function () { // Shorthand day name; Mon...Sun return f.l().slice(0, 3); }, j: function () { // Day of month; 1..31 return jsdate.getDate(); }, l: function () { // Full day name; Monday...Sunday return txt_words[f.w()] + 'day'; }, N: function () { // ISO-8601 day of week; 1[Mon]..7[Sun] return f.w() || 7; }, S: function(){ // Ordinal suffix for day of month; st, nd, rd, th var j = f.j(), i = j%10; if (i <= 3 && parseInt((j%100)/10) == 1) i = 0; return ['st', 'nd', 'rd'][i - 1] || 'th'; }, w: function () { // Day of week; 0[Sun]..6[Sat] return jsdate.getDay(); }, z: function () { // Day of year; 0..365 var a = new Date(f.Y(), f.n() - 1, f.j()), b = new Date(f.Y(), 0, 1); return Math.round((a - b) / 864e5); }, // Week W: function () { // ISO-8601 week number var a = new Date(f.Y(), f.n() - 1, f.j() - f.N() + 3), b = new Date(a.getFullYear(), 0, 4); return _pad(1 + Math.round((a - b) / 864e5 / 7), 2); }, // Month F: function () { // Full month name; January...December return txt_words[6 + f.n()]; }, m: function () { // Month w/leading 0; 01...12 return _pad(f.n(), 2); }, M: function () { // Shorthand month name; Jan...Dec return f.F().slice(0, 3); }, n: function () { // Month; 1...12 return jsdate.getMonth() + 1; }, t: function () { // Days in month; 28...31 return (new Date(f.Y(), f.n(), 0)).getDate(); }, // Year L: function () { // Is leap year?; 0 or 1 var j = f.Y(); return j % 4 === 0 & j % 100 !== 0 | j % 400 === 0; }, o: function () { // ISO-8601 year var n = f.n(), W = f.W(), Y = f.Y(); return Y + (n === 12 && W < 9 ? 1 : n === 1 && W > 9 ? -1 : 0); }, Y: function () { // Full year; e.g. 1980...2010 return jsdate.getFullYear(); }, y: function () { // Last two digits of year; 00...99 return f.Y().toString().slice(-2); }, // Time a: function () { // am or pm return jsdate.getHours() > 11 ? "pm" : "am"; }, A: function () { // AM or PM return f.a().toUpperCase(); }, B: function () { // Swatch Internet time; 000..999 var H = jsdate.getUTCHours() * 36e2, // Hours i = jsdate.getUTCMinutes() * 60, // Minutes s = jsdate.getUTCSeconds(); // Seconds return _pad(Math.floor((H + i + s + 36e2) / 86.4) % 1e3, 3); }, g: function () { // 12-Hours; 1..12 return f.G() % 12 || 12; }, G: function () { // 24-Hours; 0..23 return jsdate.getHours(); }, h: function () { // 12-Hours w/leading 0; 01..12 return _pad(f.g(), 2); }, H: function () { // 24-Hours w/leading 0; 00..23 return _pad(f.G(), 2); }, i: function () { // Minutes w/leading 0; 00..59 return _pad(jsdate.getMinutes(), 2); }, s: function () { // Seconds w/leading 0; 00..59 return _pad(jsdate.getSeconds(), 2); }, u: function () { // Microseconds; 000000-999000 return _pad(jsdate.getMilliseconds() * 1000, 6); }, // Timezone e: function () { // Timezone identifier; e.g. Atlantic/Azores, ... // The following works, but requires inclusion of the very large // timezone_abbreviations_list() function. /* return that.date_default_timezone_get(); */ throw 'Not supported (see source code of date() for timezone on how to add support)'; }, I: function () { // DST observed?; 0 or 1 // Compares Jan 1 minus Jan 1 UTC to Jul 1 minus Jul 1 UTC. // If they are not equal, then DST is observed. var a = new Date(f.Y(), 0), // Jan 1 c = Date.UTC(f.Y(), 0), // Jan 1 UTC b = new Date(f.Y(), 6), // Jul 1 d = Date.UTC(f.Y(), 6); // Jul 1 UTC return ((a - c) !== (b - d)) ? 1 : 0; }, O: function () { // Difference to GMT in hour format; e.g. +0200 var tzo = jsdate.getTimezoneOffset(), a = Math.abs(tzo); return (tzo > 0 ? "-" : "+") + _pad(Math.floor(a / 60) * 100 + a % 60, 4); }, P: function () { // Difference to GMT w/colon; e.g. +02:00 var O = f.O(); return (O.substr(0, 3) + ":" + O.substr(3, 2)); }, T: function () { return 'UTC'; }, Z: function () { // Timezone offset in seconds (-43200...50400) return -jsdate.getTimezoneOffset() * 60; }, // Full Date/Time c: function () { // ISO-8601 date. return 'Y-m-d\\TH:i:sP'.replace(formatChr, formatChrCb); }, r: function () { // RFC 2822 return 'D, d M Y H:i:s O'.replace(formatChr, formatChrCb); }, U: function () { // Seconds since UNIX epoch return jsdate / 1000 | 0; } }; this.date = function (format, timestamp) { that = this; jsdate = (timestamp === undefined ? new Date() : // Not provided (timestamp instanceof Date) ? new Date(timestamp) : // JS Date() new Date(timestamp * 1000) // UNIX timestamp (auto-convert to int) ); return format.replace(formatChr, formatChrCb); }; return this.date(format, timestamp); } jQuery(document).ready(function ($) { $('input[name="type[]"]').change(function () { if ($('input[name="type[]"]:checked').hasClass('filetype')) { $('.hasdests').show(); } else { $('.hasdests').hide(); } $( '#tab-jobtype-' + $(this).val().toLowerCase() ).toggle( ); }); if ($('input[name="type[]"]:checked').hasClass('filetype')) { $('.hasdests').show(); } else { $('.hasdests').hide(); } $('input[name="destinations[]"]').change(function () { $( '#tab-dest-' + $(this).val().toLowerCase() ).toggle( ); }); $('input[name="name"]').keyup(function () { $('#h2jobtitle').replaceWith('' + backwpup_htmlspecialchars( $(this).val() ) + ''); }); $('input[name="name"]').focus( function () { if ( $(this).val() == $(this).data( 'empty' ) ) { $(this).val( '' ); } }); $('input[name="name"]').blur( function () { if ( $(this).val() === '' ) { $(this).val( $(this).data( 'empty' ) ); } }); $('input[name="backuptype"]').change(function () { if ($(this).val() == 'sync') { $('.nosync').hide(); $('.sync').show(); } else { $('.nosync').show(); $('.sync').hide(); } }); if ($('input[name="backuptype"]:checked').val() == 'sync') { $('.nosync').hide(); $('.sync').show(); } else { $('.nosync').show(); $('.sync').hide(); } $('input[name="archivename"]').keyup(function () { var filename = $(this).val(); filename = filename.replace( '%hash%', '[hash]' ); filename = filename.replace( '%d', date( 'd' ) ); filename = filename.replace( '%j', date( 'j' ) ); filename = filename.replace( '%m', date( 'm' ) ); filename = filename.replace( '%n', date( 'n' ) ); filename = filename.replace( '%Y', date( 'Y' ) ); filename = filename.replace( '%y', date( 'y' ) ); filename = filename.replace( '%a', date( 'a' ) ); filename = filename.replace( '%A', date( 'A' ) ); filename = filename.replace( '%B', date( 'B' ) ); filename = filename.replace( '%g', date( 'g' ) ); filename = filename.replace( '%G', date( 'G' ) ); filename = filename.replace( '%h', date( 'h' ) ); filename = filename.replace( '%H', date( 'H' ) ); filename = filename.replace( '%i', date( 'i' ) ); filename = filename.replace( '%s', date( 's' ) ); filename = filename.replace( '[hash]', '%hash%' ); $('#archivefilename').replaceWith('' + backwpup_htmlspecialchars( filename ) + ''); }); $('input[name="archiveformart"]').change(function () { $('#archiveformart').replaceWith('' + $(this).val() + ''); }); }); {"id":567,"date":"2021-01-27T20:50:59","date_gmt":"2021-01-27T20:50:59","guid":{"rendered":"http:\/\/association-education-sexualite.com\/?page_id=567"},"modified":"2021-01-30T18:28:38","modified_gmt":"2021-01-30T18:28:38","slug":"tarifs","status":"publish","type":"page","link":"http:\/\/association-education-sexualite.com\/index.php\/tarifs\/","title":{"rendered":"Protocole d’intervention"},"content":{"rendered":"\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t

TITRE<\/h2>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t

protocole \/ contrat type – tarifs<\/p><\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t

\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t<\/i>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t<\/i>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t

\u00a0<\/h3>

Modalit\u00e9s d\u2019intervention\u00a0 en coll\u00e8ge\/lyc\u00e9e<\/strong><\/h3>

\u00a0<\/p>

1\u00e8re partie : Pr\u00e9ambule<\/span><\/p>

– Entretien avec le chef d\u2019\u00e9tablissement afin de cerner la demande et les moyens accord\u00e9s par chacun. Un contrat clair est alors \u00e9tabli entre AIMES et l’Etablissement<\/p>

– Les professeurs (notamment de SVT) et le professeur principal sont consult\u00e9s et impliqu\u00e9s dans le contenu de l’intervention et le protocole de collecte pr\u00e9liminaire des questions<\/p>

– Le site internet de AIMES (www.association-education-sexualit\u00e9.com) apportera des pr\u00e9cisions et des liens utiles (notamment aux parents et autres personnels de l’\u00e9tablissement)<\/p>

2\u00e8me partie : Pr\u00e9paration de l\u2019intervention<\/span><\/p>

– La rencontre est pr\u00e9sent\u00e9e aux \u00e9l\u00e8ves une semaine avant par leur professeur ( trame fournie pour cette pr\u00e9sentation)<\/p>

– Afin que les jeunes puissent profiter pleinement de la rencontre il leur est demand\u00e9 de transmettre leurs questions et sujets \u00e0 aborder (sur papier anonymis\u00e9), \u00e0 l’aide d’une urne s\u00e9curis\u00e9e et g\u00e9r\u00e9e uniquement par AIMES.<\/p>

3\u00e8me partie : D\u00e9roulement des interventions<\/span><\/p>

– Dur\u00e9e : 2h en groupes pr\u00e9d\u00e9finis selon la demande et les moyens<\/p>

-Nombre d’interventions : Cette modalit\u00e9 est d\u00e9finie en 1\u00e8re partie<\/p>

– Logistique : Seul un tableau noir et ses craies de diff\u00e9rentes couleurs (ou feutres) sont demand\u00e9s. Le mat\u00e9riel vid\u00e9o et l’\u00e9cran sont fournis par AIMES.<\/p>

– Les \u00e9l\u00e8ves pr\u00e9voieront de quoi \u00e9crire et installeront un chevalet avec leur pr\u00e9nom.<\/p>

– Un questionnaire\/bilan anonyme sera demand\u00e9 aux \u00e9l\u00e8ves en fin d\u2019intervention.<\/p>

4\u00e8me partie : Fin d’intervention<\/span><\/p>

– La facture est envoy\u00e9e par mail d\u00e8s l’intervention r\u00e9alis\u00e9e, pour un r\u00e8glement dans un d\u00e9lai d\u2019un mois maximum. Cet envoi d\u00e9clenchera la derni\u00e8re partie de l’intervention.<\/p>

5\u00e8me partie : Synth\u00e8se et suivi<\/span><\/p>

– Un retour g\u00e9n\u00e9ral sera envoy\u00e9 \u00e0 l’\u00e9tablissement d\u00e8s r\u00e9ception du r\u00e8glement de la facture.<\/p>

– Un fascicule r\u00e9capitulatif sera propos\u00e9 aux professeurs et aux jeunes, comportant aussi les r\u00e9f\u00e9rences et liens qui pourraient leur \u00eatre utiles.<\/p><\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"

TITRE protocole \/ contrat type – tarifs   Modalit\u00e9s d\u2019intervention  en coll\u00e8ge\/lyc\u00e9e 1\u00e8re partie : Pr\u00e9ambule – Entretien avec le chef d\u2019\u00e9tablissement afin de cerner la demande et les moyens accord\u00e9s par chacun. Un contrat clair est alors \u00e9tabli entre AIMES et l’Etablissement – Les professeurs (notamment de SVT) et le professeur principal sont consult\u00e9s …<\/p>\n

Protocole d’intervention<\/span> Lire la suite\u00a0\u00bb<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-567","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"http:\/\/association-education-sexualite.com\/index.php\/wp-json\/wp\/v2\/pages\/567","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/association-education-sexualite.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"http:\/\/association-education-sexualite.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"http:\/\/association-education-sexualite.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/association-education-sexualite.com\/index.php\/wp-json\/wp\/v2\/comments?post=567"}],"version-history":[{"count":15,"href":"http:\/\/association-education-sexualite.com\/index.php\/wp-json\/wp\/v2\/pages\/567\/revisions"}],"predecessor-version":[{"id":933,"href":"http:\/\/association-education-sexualite.com\/index.php\/wp-json\/wp\/v2\/pages\/567\/revisions\/933"}],"wp:attachment":[{"href":"http:\/\/association-education-sexualite.com\/index.php\/wp-json\/wp\/v2\/media?parent=567"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}