coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 upload => Topic started by: _clark_ on November 30, 2006, 04:21:07 PM

Title: Files order by Album
Post by: _clark_ on November 30, 2006, 04:21:07 PM
Hi,

when I upload an image I have to select the album where I want to put it.

The albums are included in the respective categories... Is possibile to see only the Album order by name and not the categories?

It would be simpler to insert the photos...

Thank you very much...
Title: Re: Files order by Album
Post by: Hein Traag on November 30, 2006, 04:24:51 PM
As far as my coding skills go i think it is this section in searchnew.php which needs editing.

// Create the nicely sorted and formatted drop down list
        $alb_cat = '';
        foreach ($listArray as $val) {
            if ($val['cat'] != $alb_cat) {
          if ($alb_cat) $select .= "</optgroup>\n";
                $select .= '<optgroup label="' . $val['cat'] . '">' . "\n";
                $alb_cat = $val['cat'];
            }
            $select .= '<option value="' . $val['aid'] . '"' . ($val['aid'] == $sel_album ? ' selected' : '') . '>   ' . $val['title'] . "</option>\n";
        }
        if ($alb_cat) $select .= "</optgroup>\n";
    }

    return "\n<select name=\"$id\" class=\"listbox\">\n$select</select>\n";
}


Don't have time to try something at this moment. Will try later on.
In the meantime, should you want to try anything yourself.. make a backup of the file first.

Hein
Title: Re: Files order by Album
Post by: _clark_ on November 30, 2006, 04:38:56 PM
Ok... I'll try... the problem is that i'm italian so the search is not so easy... I hope to find it.

thank you...

If you know some discussion that can help me please write here the link...

Title: Re: Files order by Album
Post by: _clark_ on December 06, 2006, 06:16:28 PM
Sorry, I didn't find what i'm looking for...

Anyway, where can i find info that could help me?

Thank you very much...
Title: Re: Files order by Album
Post by: _clark_ on December 08, 2006, 12:04:22 PM
Thank You very much....
Title: Re: Files order by Album
Post by: Joachim Müller on December 08, 2006, 05:42:11 PM
http://coppermine-gallery.net/demo/cpg14x/docs/faq.htm#lamesupport

Option 2 applies to you most.