Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'll try to be brief and clear.

I don't know much PHP. I have an array that just looks too long:

http://i.stack.imgur.com/u4y11.jpg (can't post images yet, so please click)

As you can see, there are 7 options, and it looks ugly and long.

I would like to separate them into hideable sectors. Like:

3 first options [click here to dropdown options] 4 latest options [click here to dropdown options]

Instead of

Option 1 Option 2 Option 3 Option 4 Option 5 Option 6 Option 7

You know?

If someone could give me a light on this matter, I would be deeply grateful:

It's basically 7 copy and pastes like this:


    $url_bgcolor =  get_bloginfo('stylesheet_directory') . '/admin/images/bgcolor/';
    $options[] = array( "name" => "Cor da letra do titulo da pagina",
                        "desc" => "Selecione a cor secundária do seu website.",
                        "id" => $shortname."_style2",
                        "std" => "",
                        "type" => "images",
                        "options" => array(
                                'default2.css' => $url_bgcolor . 'dark.png',
                                'black2.css' => $url_bgcolor . 'black.png',
                                'green2.css' => $url_bgcolor . 'green.png',
                                'blue2.css' => $url_bgcolor . 'blue.png',
                                'purple2.css' => $url_bgcolor . 'purple.png',
                                'orange2.css' => $url_bgcolor . 'orange.png',
                                'red2.css' => $url_bgcolor . 'red.png'
                ));

share|improve this question

1 Answer

In order to hide/show elements on your page, you need to use a client-side script like javascript. Here is a simple javascript function to toggle between showing and hiding your arrays.

In the <head> of you html add the following script/function-

<script type="text/javascript"> 
function toggleView(aid, id, text) {
    var divView = document.getElementById(id);
    var anchor = document.getElementByID(aid);

   if (divView.style.display != "block") {
       divView.style.display = "block";
       anchor.innerHTML = "click here to hide " + text + " options";
   } else {
      divView.style.display = "none";
      anchor.innerHTML = "click here to show " + text + " options";
   }
}
</script>

Then in your <body> you would create an <a> anchor, and a <div>

Your anchor tag and div would then look like this:

<a id="toggle3" onclick="toggleView('toggle3', 'options3', 'first 3')">click here to show first 3 options</a>
<div id="options3" style="display: none">
Option 1
Option 2
Option 3
</div>

<a id="toggle4" onclick="toggleView('toggle4', 'options4', 'last 4')">click here to show last 4 options</a>
<div id="options4" style="display: none">
Option 4
Option 5
Option 6
Option 7
</div>

EDITED 11/30

Here is how I would do it -

Javascript
On line #438 of admin-interface.php, before the <?php } add the javascript function()

    <?php  
    //Hide/Show Image Groups  
    ?>  
<script type="text/javascript">   
function toggleView(aid, id, text) {  
    var divView = document.getElementById(id);  
    var anchor = document.getElementByID(aid);  

if (divView.style.display != "block") {
   divView.style.display = "block";
   anchor.innerHTML = "click here to hide " + text + " options";
} else {
  divView.style.display = "none";
  anchor.innerHTML = "click here to show " + text + " options";
}
}
</script>

Anchor/DIV
On line #603 of admin-interface.php, before the //$output .= '<div class="section ... add the anchors and <div>'s
note: if you have already added the javascript function() above, it might be line #621 instead of #603

if ($value['type'] == "images" && $counter == 1)
{$output .= '<a id="toggle3" onclick="toggleView(\'toggle3\', \'options3\', \'first 3\')">click here to show first 3 options</a>'."\n" . '<div id="options3" style="display: none">'."\n";}
if ($value['type'] == "images" && $counter == 4)
{$output .= '<a id="toggle4" onclick="toggleView(\'toggle4\', \'options4\', \'last 4\')">click here to show last 4 options</a>'."\n" . '<div id="options4" style="display: none">'."\n";}

On line #957 of admin-interface.php, before the }$output .= '</div>';return array($output,$menu); on #958-960, add the </div> closing tag
note: if you have already added the javascript function() and the anchors and <div>'s above, it might be line #979 instead of #957

if ($value['type'] == "images" && ($counter == 1 || $counter == 4))
{$output .= '</div>'."\n";}
share|improve this answer
thanks for the answer I'm editing a wordpress theme, so it's in PHP. The <head> file I think I've managed, by adding it to header.php But the body part, it's more complicated because it's inside a PHP file, a php function... Should I use echo '<a id [etc] ' ? – Lucas Bustamante Nov 29 '12 at 6:38
Yes, you can use echo "<a id=....>";, which I have added as an example, or you can close out of php then start php again - ?><a id=...><?php ... – Sean Nov 29 '12 at 13:26
So, it isn't workign... When I add echo "", it appears above the <head> tag, 'cause I think $options is some kind of function that is called somewhere else, and the content are arrays, you know? Here's the full file: mediafire.com/?qxfeiay872e2i3a – Lucas Bustamante Nov 30 '12 at 19:28
That file just sets up the $option array. What is your script that echo's the array? It should be something like foreach($color as $option){echo $color['name'] ... $color['options'] ... – Sean Nov 30 '12 at 20:13
i'll search, edit in a few -- Edit -- I'm almost sure that this is the one: mediafire.com/?38z7vmou7yv7j9z – Lucas Bustamante Nov 30 '12 at 20:20
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.