|
|
|
|
|
Joined: Fri Nov 17 2006, 05:30PM
Posts: 484
|
Wed Jul 27 2011, 06:00PM
|
|
|
|
i can't get the idea. you don't see folder names when you browse gallery. you see gallery.php?view.4.1 only
|
|
|
|
Joined: Tue Mar 13 2007, 06:56PM
Posts: 35
|
Wed Jul 27 2011, 06:23PM
|
|
|
I'm not talking front-end, I mean in the back-end. Say I create an album 'France 2011' in the category 'Vacations'. This will result in a folder being created on the server with a random name, e.g: site_root/e107_plugins/sgallery/pics/eu36dhu73
What I am looking for is to create my own folders on the back-end and then add the pictures from that into an album. So, let's say I create the folder site_root/e107_plugins/sgallery/pics/vacations/france_2011 I would then go into the gallery, add the category 'Vacations' , and an album 'France 2011' and choose to load the images in the folder into the gallery.
Does that make it more clear?
[ Edited Wed Jul 27 2011, 06:30PM ]
|
|
|
|
Joined: Fri Nov 17 2006, 05:30PM
Posts: 484
|
Wed Jul 27 2011, 07:13PM
|
|
|
|
it is clear, but i still can't get the idea why you need this?
|
|
|
|
Joined: Tue Mar 13 2007, 06:56PM
Posts: 35
|
Wed Jul 27 2011, 08:49PM
|
|
|
Well, basically just for my "overview" I guess. I like to keep my server organized, so to say :P Also, it makes it a lot easier for me to "transfer" from my old gallery implementation :) I can just copy the pics on the server, and done. Basically.
Also, it seems more logical to me to have a structure in your gallery that reflects your folder structure. But that might also be my linear thinking :P
[ Edited Wed Jul 27 2011, 09:35PM ]
|
|
|
|
The Agency
Joined: Tue Apr 06 2010, 12:30PM
Posts: 32
|
Mon Aug 01 2011, 04:07PM
|
|
|
Ben.Hahlen
a new version of the gallery is in the TO DO: list :)
You'll need to arm up with some patience and wait for it
|
|
|
|
Joined: Tue Mar 13 2007, 06:56PM
Posts: 35
|
Mon Aug 01 2011, 04:10PM
|
|
|
|
Berckoff wrote ...
Ben.Hahlen
a new version of the gallery is in the TO DO: list :)
You'll need to arm up with some patience and wait for it
Thanks for the update :) Patience is no problem, just messing about now with my site anyhow, and it's not a "must have now" thing ;)
I will keep on checking the site for updates :)
Just curious though: is there a "feature list" available? Even a rough one?
[ Edited Mon Aug 01 2011, 04:11PM ]
|
|
|
|
Joined: Tue Jun 08 2010, 02:47PM
Posts: 20
|
Sun Oct 30 2011, 01:24PM
|
|
|
my hack of e_meta for showing sgallery scripts only on gallery page
<?php
if (e_PAGE == 'gallery.php') {
echo "<script type='text/javascript'>\n";
echo "<!--\n";
echo "
function sgalSmartOpen(url, lvforce, lbel) {
if(typeof Lightbox != 'undefined' && !lbforce) {
if(lbel) { myLightbox.start(lbel); return 1; }
return false;
} else if(typeof Shadowbox != 'undefined') {
if(lvforce) {
lbel = $(lbel);
Shadowbox.open({
content: lbel.href,
title: lbel.title,
player: 'img'
});
}
return false;
} else if(typeof Lightview != 'undefined') {
if(lvforce) {
lbel = $(lbel);
Lightview.show({
href: lbel.href,
title: lbel.title,
options: {
autosize: true
}
});
}
return false;
} else {
pwindow = window.open(url,'preview', 'resizable=yes,width=600,height=400,menubar=no,toolbar=no');
pwindow.focus();
return false;
}
}
";
echo "//-->\n";
echo "</script>\n";}
?>
[ Edited Sun Oct 30 2011, 01:25PM ]
|
|
|
|
|
|
Moderators: SonicE, veskoto, SecretR, Stoewarius, steved, McFly, Cameron, yanniiwanow
|
|