WebsiteBaker 2.13.9 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
Name : picasaAlbumsdesc: to integrate Picasa albums in WB
$string = $albums;$string = str_replace(array(' ',' '),'',$string) ;$array = explode(';', $string); $newArray = array();foreach ($array as $value) { $value = '"'.$value .'",'; $newArray[$value] = $value; }unset($value);$array = $newArray;//print_r($array);exit;$albs= implode($array);$albs=substr_replace($albs ,"",-1);return('<script type="text/javascript">$(document).ready(function() {$("#pic").pwi({username:"* YOUR USER CODE*",albums:['.$albs.']
you call it on the pages: [[picasaAlbums?albums=album1;album2;album3]]in your index you need to call:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script><script type="text/javascript" src="/include/jquery/picasa/jquery.colorbox/jquery.colorbox-min.js"></script><script src="/include/jquery/picasa/jquery.pwi-min.js" type="text/javascript"></script>
I did modify a bit jquery.pwi-min.js. see:http://dagnoy.com/include/jquery/picasa/jquery.pwi-min.jscolor-box code I use:http://dagnoy.com/include/jquery/picasa/jquery.colorbox/jquery.colorbox-min.jsfiles avail on:http://code.google.com/p/pwi/instructions :1. create the album(s) and drag and drop photos from your computer (if you use Chrome or Firefox)2. album naming: please NO SPACES!!! So for example, you write 'AlbumName' instead of 'Album Name' as picasa album name. A space will be added between any two Capital letters later by the program. So if you write album name as 'MyAlbum' it will show on websit 'My Album'. So make sure you have Capital letter where you want a space!3. make the album public. IMPORTANT!!!4. go to each photo and add caption if needed. you can also add album description.5.Go to admin yoursite.com/admin and log in.6. make a new page 7.paste this paragraph in it: [[picasaAlbums?albums= album1 ; Album2 ]] 8.Change the album1;Album2 to the EXACT names of the picasa albums (no spaces!!)9. you can add many albums but you MUST put ; between each and the next, BUT NEVER AFTER THE LAST!.10. save page and you should see the albums in new page.