Le site de JL TRYOEN
  • Home
  • News
  • Blog
  • Joomla
    • Install
    • Sites Joomla
    • Aide Joomla
  • Extensions
    • Plugins
    • Templates
    • Composants
  • Attachments
  • Wiki
  • Drupal
  • Wordpress
  • About
    • About
    • Site Map
    • Contact

Medias

Details
Last Updated: 09 October 2019

A noter que depuis début 2019 l'API Google Picasa ne fonctionne plus.
Donc de nombreux plugins non plus.
A ma connaissance seul le plugin OzioGallery permet d'accéder aux photos de Google.

Le plugin rokbox n'est plus compatible avec Joomla 4.0
Il utilise mootools.js qui ne fait plus partie du package Joomla.

 {slider Medias}

{slider Phocagallery|blue}

Site

Phoca Gallery - Joomla! Extensions Directory


Syntaxe

{phocagallery view=category|id=4| imageid=0|limitstart=0|limitcount=10|
fontcolor=#B88A00|bgcolor=#FFBF00|bgcolorhover=#BFFF00|imagebgcolor=#FFD24D| 
bordercolor=#B88A00|bordercolorhover=#86B300| detail=1|displayname=1|displaydetail=1|displaydownload=0|float=right}

Résultat

IMG_20080420_143540
IMG_20080420_143540
IMG_20080420_143540
IMG_20080420_143540397482937
IMG_20080420_143540397482937
IMG_20080420_143540397482937
IMG_20120821_112800
IMG_20120821_112800
IMG_20120821_112800
IMG_20120821_112824
IMG_20120821_112824
IMG_20120821_112824
IMG_20120821_113120
IMG_20120821_113120
IMG_20120821_113120
IMG_20120821_143528
IMG_20120821_143528
IMG_20120821_143528
IMG_20150405_181452
IMG_20150405_181452
IMG_20150405_181452
IMG_20150919_101106
IMG_20150919_101106
IMG_20150919_101106
IMG_20160909-12h18m
IMG_20160909-12h18m
IMG_20160909-12h18m
Play Slideshow Pause Slideshow

{pgslideshow id=4|width=100|height=100|delay=3000|image=M}

{slider OzioGallery|blue}

https://extensions.joomla.org/extensions/extension/photos-a-images/galleries/ozio-gallery/

Ozio Gallery est un composant Joomla permettant l'affichage d'une galerie de photos ou Vidéos venant de Flickr.com, de Google Photos, ou de Youtube.

 

 

Le composant nécéssite pour Google Photos d'avoir créé un profil développeur

https://console.developers.google.com

Exemple

ozio_gallery_jgallery
Ozio Gallery

Dans la version 6.0 il y a un petit bug que j'ai corrigé!!!

--- a/administrator/components/com_oziogallery4/views/setup_auth/view.html.php
--- a/administrator/components/com_oziogallery4/views/setup_auth/view.html.php
+++ b/administrator/components/com_oziogallery4/views/setup_auth/view.html.php
@@ -68,7 +69,7 @@ class OzioViewSetup_Auth extends JViewLegacy
        //      $document->addScript("https://accounts.google.com/gsi/client");// async defer
 //             $document->addScriptDeclaration('ozio_setup_auth();');

-$document->addScript("https://apis.google.com/js/client.js?onload=ozio_setup_auth","text/javascript",true,true);// async defer
+        $document->addScript("https://apis.google.com/js/client.js?onload=ozio_setup_auth");//JLT,"text/javascript",true,true);// async defer

JE maintiens un fork de la repo github avec les modifications pour Joomla 5.0

 https://github.com/JLTRY/ozio


{/sliders}

Mon premier plugin

Details
Last Updated: 16 March 2013

J'ai décidé de créer mon premier plugin.

L'objectif à terme est d'ajouter mes plugins à Joomla.

Je voulais commencer par en faire un très simple.

Le plugin doit permettre d'afficher "Hello World" en mode normal, italique ou gras, juste en ajoutant

{hello style=normal|italic|bold}

 

Le résultat

Hello World

Hello World

Hello World

 

 {attachments}


Coloration Syntaxique

Details
Last Updated: 19 January 2024

Mes essais sur les différents plugins

 

PRISM SyntaxHighlighter

Fournisseur

 https://www.andrehotzler.de/en/projects/prism-prismjs-com-syntaxhighlighter-for-joomla.html

 

La syntaxe

<pre class="langage-php" > $variable = "Ceci est un message test !";</pre>

 

Le résultat

$variable = "Ceci est un message test !";

Geshi

La syntaxe

 

<pre xml:lang="javascript" lines="true" > 
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-19694431-1']);
_gaq.push(['_trackPageview']);
 
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
 </pre>

 

Attention à bien placer xml:lang juste après la balise pre

Le résultat

  1. var _gaq = _gaq || [];
  2. _gaq.push(['_setAccount', 'UA-19694431-1']);
  3. _gaq.push(['_trackPageview']);
  4.  
  5. (function() {
  6. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  7. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  8. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  9. })();

 

Site github

J'ai fait un "fork" du repo principal non mis à jour depuis 12 ans !!!

 https://github.com/JLTRY/Joomla-GeSHi

 

 

SyntaxHighlighter

Fournisseur

http://alexgorbatchev.com/SyntaxHighlighter/

 Le site n'existe plus. Le plugin n'utilise que du javascript, contrairement à la famile geshi qui elle utilise du php.

Le site ne fonctionne pas très bien.

 

La syntaxe

<pre class="brush:php;gutter:false;toolbar:false">    
    public static function getpost() {
        if (version_compare(JVERSION, '4.0', 'ge')){
            return JFactory::getApplication()->input->getArray(array());
        }
        else {
            return call_user_func_array('AttachmentsHelper::get', ['post']);
        }
    }
</pre>

 

 

Le résultat

	
    public static function getpost() {
        if (version_compare(JVERSION, '4.0', 'ge')){
            return JFactory::getApplication()->input->getArray(array());
        }
        else {
            return call_user_func_array('AttachmentsHelper::get', ['post']);
        }
    }

 

Correctif

J'ai eu un souci sous Internet Explorer

can't find a brush

 

J'ai fait un correctif dans syntaxhighlighter:

JFactory::getDocument()->addScriptDeclaration($js); 
//added  
JFactory::getDocument()->addScript( 'plugins/content/syntaxhighlighter/js/shBrushPhp.js' );
JFactory::getDocument()->addScript( 'plugins/content/syntaxhighlighter/js/shBrushCss.js' );

 

 

 

Liens utiles

  • PRISM (prismjs.com) SyntaxHighlighter for Joomla! - Andre Hotzler EDV-Dienstleistungen

  • Joomler SyntaxHighlighter - Joomla! Extensions Directory
  • syntaxhighlighter/syntaxhighlighter: SyntaxHighlighter is a fully functional self-contained code syntax highlighter developed in JavaScript.
  • SyntaxHighlighter-3.0.83-after-AJAX-call-Cant-find-brush-for-BRUSH-fix
  • occams-razor-and-brushes
  • GeSHi - Generic Syntax Highlighter :: Home

 


Subcategories

Code Highlighter

Media

No Numbers

Autres

Joomla Version

Joomla 5.3.0

Recherche

Météo



Mes Sites

Mon mediawiki sur l'informatique
Wordpress
La partie de mon site faite avec wordpress
Trycoaching

Last Articles(mediawiki)

Install MediaWiki/Modifications pour la 1.43.1
Install MediaWiki/Première Installation
MediaWiki/Astuces
MediaWiki/Mes Extensions/SecureInclude

  Version: 1.43.1


Creative Commons attribution non commercial partage ? l'identique © 2011-2025 JL TRYOEN Site
 
About | Map | Contact Joomla 3.0