Agragar una clase css al side-left. AYUDA!

Hola soy nuevo por aquí.

Instalé drupal 7 para la pagina de una asociación y quiero cambiar los enlaces del side-left por botones, hicé unos botones (sprite) y los puse en una clase pero ahora no se como colocarlos en el enlace.

Aqui estan mis clases css:

.ButtonContainer
{
background:url(../images/adoptaunangel.png) no-repeat transparent;
display:block;
}

.btn_fg{ width:151px; height: 37px; background-position: -2px 2px ; }
.btn_fg:hover{ background-position: 4px 37px ; }

en teoria seria algo tan facil como:

<li class="first leaf">
<a href="/es/galeria" class="ButtonContainer btn_fg">FOTOS</a>
</li>

Eso así lo he puesto en el firebug y funciona.

El problema es q no se como colocar esas dos clases en el código. Miré mi page.tpl.php y viene esto:

  <!-- LEFT SIDEBAR  -->
<?php if($page['sidebar_left']): ?>
<div id="sidebar_left">
<?php print render($page['sidebar_left']); ?>
</div>
<?php endif; ?>

Al pareser el listado de links viene dentro de la función render pero ni idea donde modificarlo.

Espero me ayuden. Muchas gracias.

Opciones de visualización de comentarios

Seleccione la forma que prefiera para mostrar los comentarios y haga clic en «Guardar las opciones» para activar los cambios.

Le hice un

Le hice un var_dump($page['sidebar_left'] ['menu_menu-secciones']) para ver donde salen los links de las secciones y esto es lo que arroja:

pero bueno como agregaria mis clases al elemento por ejemplo FOTOS ?

array(14) {
[531]=>
array(7) {
["#theme"]=>
string(25) "menu_link__menu_secciones"
["#attributes"]=>
array(1) {
["class"]=>
array(2) {
[0]=>
string(5) "first"
[1]=>
string(4) "leaf"
}
}
["#title"]=>
string(5) "FOTOS"
["#href"]=>
string(7) "galeria"
["#localized_options"]=>
array(1) {
["attributes"]=>
array(1) {
["title"]=>
string(0) ""
}
}
["#below"]=>
array(0) {
}
["#original_link"]=>
array(45) {
["menu_name"]=>
string(14) "menu-secciones"
["mlid"]=>
string(3) "531"
["plid"]=>
string(1) "0"
["link_path"]=>
string(7) "galeria"
["router_path"]=>
string(7) "galeria"
["link_title"]=>
string(5) "FOTOS"
["options"]=>
array(1) {
["attributes"]=>
array(1) {
["title"]=>
string(0) ""
}
}
["module"]=>
string(6) "system"
["hidden"]=>
string(1) "0"
["external"]=>
string(1) "0"
["has_children"]=>
string(1) "0"
["expanded"]=>
string(1) "0"
["weight"]=>
string(3) "-50"
["depth"]=>
string(1) "1"
["customized"]=>
string(1) "1"
["p1"]=>
string(3) "531"
["p2"]=>
string(1) "0"
["p3"]=>
string(1) "0"
["p4"]=>
string(1) "0"
["p5"]=>
string(1) "0"
["p6"]=>
string(1) "0"
["p7"]=>
string(1) "0"
["p8"]=>
string(1) "0"
["p9"]=>
string(1) "0"
["updated"]=>
string(1) "0"
["load_functions"]=>
string(0) ""
["to_arg_functions"]=>
string(0) ""
["access_callback"]=>
string(12) "views_access"
["access_arguments"]=>
string(80) "a:1:{i:0;a:2:{i:0;s:16:"views_check_perm";i:1;a:1:{i:0;s:14:"access content";}}}"
["page_callback"]=>
string(10) "views_page"
["page_arguments"]=>
string(39) "a:2:{i:0;s:7:"galeria";i:1;s:4:"page";}"
["delivery_callback"]=>
string(0) ""
["tab_parent"]=>
string(0) ""
["tab_root"]=>
string(7) "galeria"
["title"]=>
string(5) "FOTOS"
["title_callback"]=>
string(1) "t"
["title_arguments"]=>
string(0) ""
["theme_callback"]=>
string(0) ""
["theme_arguments"]=>
string(6) "a:0:{}"
["type"]=>
string(1) "6"
["description"]=>
string(0) ""
["in_active_trail"]=>
bool(false)
["href"]=>
string(7) "galeria"
["access"]=>
bool(true)
["localized_options"]=>
array(1) {
["attributes"]=>
array(1) {
["title"]=>
string(0) ""
}
}
}
}
[501]=>
array(7) {
["#theme"]=>
string(25) "menu_link__menu_secciones"
["#attributes"]=>
array(1) {
["class"]=>
array(1) {
[0]=>
string(4) "leaf"
}
}
["#title"]=>
string(6) "VIDEOS"
["#href"]=>
string(16) "taxonomy/term/11"
["#localized_options"]=>
array(1) {
["attributes"]=>
array(1) {
["title"]=>
string(0) ""
}
}
["#below"]=>
array(0) {
}
["#original_link"]=>
array(45) {
["menu_name"]=>
string(14) "menu-secciones"
["mlid"]=>
string(3) "501"
["plid"]=>
string(1) "0"
["link_path"]=>
string(16) "taxonomy/term/11"
["router_path"]=>
string(15) "taxonomy/term/%"
["link_title"]=>
string(6) "VIDEOS"
["options"]=>
array(1) {
["attributes"]=>
array(1) {
["title"]=>
string(0) ""
}
}
["module"]=>
string(4) "menu"
["hidden"]=>
string(1) "0"
["external"]=>
string(1) "0"
["has_children"]=>
string(1) "0"
["expanded"]=>
string(1) "0"
["weight"]=>
string(3) "-49"
["depth"]=>
string(1) "1"
["customized"]=>
string(1) "1"
["p1"]=>
string(3) "501"
["p2"]=>
string(1) "0"
["p3"]=>
string(1) "0"
["p4"]=>
string(1) "0"
["p5"]=>
string(1) "0"
["p6"]=>
string(1) "0"
["p7"]=>
string(1) "0"
["p8"]=>
string(1) "0"
["p9"]=>
string(1) "0"
["updated"]=>
string(1) "0"
["load_functions"]=>
array(1) {
[2]=>
string(18) "taxonomy_term_load"
}
["to_arg_functions"]=>
string(0) ""
["access_callback"]=>
string(11) "user_access"
["access_arguments"]=>
string(32) "a:1:{i:0;s:14:"access content";}"
["page_callback"]=>
string(28) "media_gallery_list_galleries"
["page_arguments"]=>
string(14) "a:1:{i:0;i:2;}"
["delivery_callback"]=>
string(0) ""
["tab_parent"]=>
string(0) ""
["tab_root"]=>
string(15) "taxonomy/term/%"
["title"]=>
string(6) "VIDEOS"
["title_callback"]=>
string(19) "taxonomy_term_title"
["title_arguments"]=>
string(14) "a:1:{i:0;i:2;}"
["theme_callback"]=>
string(0) ""
["theme_arguments"]=>
string(6) "a:0:{}"
["type"]=>
string(1) "6"
["description"]=>
string(0) ""
["in_active_trail"]=>
bool(false)
["href"]=>
string(16) "taxonomy/term/11"
["access"]=>
bool(true)
["localized_options"]=>
array(1) {
["attributes"]=>
array(1) {
["title"]=>
string(0) ""
}
}
}
}
[498]=>
array(7) {
["#theme"]=>
string(25) "menu_link__menu_secciones"
["#attributes"]=>
array(1) {
["class"]=>
array(1) {
[0]=>
string(4) "leaf"
}
}
["#title"]=>
string(16) "MUNDOS PARALELOS"
["#href"]=>
string(7) "node/14"
["#localized_options"]=>
array(0) {
}
["#below"]=>
array(0) {
}
["#original_link"]=>
array(45) {
["menu_name"]=>
string(14) "menu-secciones"
["mlid"]=>
string(3) "498"
["plid"]=>
string(1) "0"
["link_path"]=>
string(7) "node/14"
["router_path"]=>
string(6) "node/%"
["link_title"]=>
string(16) "MUNDOS PARALELOS"
["options"]=>
array(0) {
}
["module"]=>
string(4) "menu"
["hidden"]=>
string(1) "0"
["external"]=>
string(1) "0"
["has_children"]=>
string(1) "0"
["expanded"]=>
string(1) "0"
["weight"]=>
string(3) "-48"
["depth"]=>
string(1) "1"
["customized"]=>
string(1) "1"
["p1"]=>
string(3) "498"
["p2"]=>
string(1) "0"
["p3"]=>
string(1) "0"
["p4"]=>
string(1) "0"
["p5"]=>
string(1) "0"
["p6"]=>
string(1) "0"
["p7"]=>
string(1) "0"
["p8"]=>
string(1) "0"
["p9"]=>
string(1) "0"
["updated"]=>
string(1) "0"
["load_functions"]=>
string(26) "a:1:{i:1;s:9:"node_load";}"
["to_arg_functions"]=>
string(0) ""
["access_callback"]=>
string(11) "node_access"
["access_arguments"]=>
string(29) "a:2:{i:0;s:4:"view";i:1;i:1;}"
["page_callback"]=>
string(14) "node_page_view"
["page_arguments"]=>
string(14) "a:1:{i:0;i:1;}"
["delivery_callback"]=>
string(0) ""
["tab_parent"]=>
string(0) ""
["tab_root"]=>
string(6) "node/%"
["title"]=>
string(16) "MUNDOS PARALELOS"
["title_callback"]=>
string(15) "node_page_title"
["title_arguments"]=>
string(14) "a:1:{i:0;i:1;}"
["theme_callback"]=>
string(0) ""
["theme_arguments"]=>
string(6) "a:0:{}"
["type"]=>
string(1) "6"
["description"]=>
string(0) ""
["in_active_trail"]=>
bool(false)
["access"]=>
bool(true)
["href"]=>
string(7) "node/14"
["localized_options"]=>
array(0) {
}
}
}
[499]=>
array(7) {
["#theme"]=>
string(25) "menu_link__menu_secciones"
["#attributes"]=>
array(1) {
["class"]=>
array(1) {
[0]=>
string(4) "leaf"
}
}
["#title"]=>
string(19) "DIRECCIONES Y LINKS"
["#href"]=>
string(7) "node/15"
["#localized_options"]=>
array(0) {
}
["#below"]=>
array(0) {
}
["#original_link"]=>
array(45) {
["menu_name"]=>
string(14) "menu-secciones"
["mlid"]=>
string(3) "499"
["plid"]=>
string(1) "0"
["link_path"]=>
string(7) "node/15"
["router_path"]=>
string(6) "node/%"
["link_title"]=>
string(19) "DIRECCIONES Y LINKS"
["options"]=>
array(0) {
}
["module"]=>
string(4) "menu"
["hidden"]=>
string(1) "0"
["external"]=>
string(1) "0"
["has_children"]=>
string(1) "0"
["expanded"]=>
string(1) "0"
["weight"]=>
string(3) "-47"
["depth"]=>
string(1) "1"
["customized"]=>
string(1) "1"
["p1"]=>
string(3) "499"
["p2"]=>
string(1) "0"
["p3"]=>
string(1) "0"
["p4"]=>
string(1) "0"
["p5"]=>
string(1) "0"
["p6"]=>
string(1) "0"
["p7"]=>
string(1) "0"
["p8"]=>
string(1) "0"
["p9"]=>
string(1) "0"
["updated"]=>
string(1) "0"
["load_functions"]=>
string(26) "a:1:{i:1;s:9:"node_load";}"
["to_arg_functions"]=>
string(0) ""
["access_callback"]=>
string(11) "node_access"
["access_arguments"]=>
string(29) "a:2:{i:0;s:4:"view";i:1;i:1;}"
["page_callback"]=>
string(14) "node_page_view"
["page_arguments"]=>
string(14) "a:1:{i:0;i:1;}"
["delivery_callback"]=>
string(0) ""
["tab_parent"]=>
string(0) ""
["tab_root"]=>
string(6) "node/%"
["title"]=>
string(19) "DIRECCIONES Y LINKS"
["title_callback"]=>
string(15) "node_page_title"
["title_arguments"]=>
string(14) "a:1:{i:0;i:1;}"
["theme_callback"]=>
string(0) ""
["theme_arguments"]=>
string(6) "a:0:{}"
["type"]=>
string(1) "6"
["description"]=>
string(0) ""
["in_active_trail"]=>
bool(false)
["access"]=>
bool(true)
["href"]=>
string(7) "node/15"
["localized_options"]=>
array(0) {
}
}
}
[497]=>
array(7) {
["#theme"]=>
string(25) "menu_link__menu_secciones"
["#attributes"]=>
array(1) {
["class"]=>
array(1) {
[0]=>
string(4) "leaf"
}
}
["#title"]=>
string(15) "AGRADECIMIENTOS"
["#href"]=>
string(7) "node/16"
["#localized_options"]=>
array(0) {
}
["#below"]=>
array(0) {
}
["#original_link"]=>
array(45) {
["menu_name"]=>
string(14) "menu-secciones"
["mlid"]=>
string(3) "497"
["plid"]=>
string(1) "0"
["link_path"]=>
string(7) "node/16"
["router_path"]=>
string(6) "node/%"
["link_title"]=>
string(15) "AGRADECIMIENTOS"
["options"]=>
array(0) {
}
["module"]=>
string(4) "menu"
["hidden"]=>
string(1) "0"
["external"]=>
string(1) "0"
["has_children"]=>
string(1) "0"
["expanded"]=>
string(1) "0"
["weight"]=>
string(3) "-46"
["depth"]=>
string(1) "1"
["customized"]=>
string(1) "1"
["p1"]=>
string(3) "497"
["p2"]=>
string(1) "0"
["p3"]=>
string(1) "0"
["p4"]=>
string(1) "0"
["p5"]=>
string(1) "0"
["p6"]=>
string(1) "0"
["p7"]=>
string(1) "0"
["p8"]=>
string(1) "0"
["p9"]=>
string(1) "0"
["updated"]=>
string(1) "0"
["load_functions"]=>
string(26) "a:1:{i:1;s:9:"node_load";}"
["to_arg_functions"]=>
string(0) ""
["access_callback"]=>
string(11) "node_access"
["access_arguments"]=>
string(29) "a:2:{i:0;s:4:"view";i:1;i:1;}"
["page_callback"]=>
string(14) "node_page_view"
["page_arguments"]=>
string(14) "a:1:{i:0;i:1;}"
["delivery_callback"]=>
string(0) ""
["tab_parent"]=>
string(0) ""
["tab_root"]=>
string(6) "node/%"
["title"]=>
string(15) "AGRADECIMIENTOS"
["title_callback"]=>
string(15) "node_page_title"
["title_arguments"]=>
string(14) "a:1:{i:0;i:1;}"
["theme_callback"]=>
string(0) ""
["theme_arguments"]=>
string(6) "a:0:{}"
["type"]=>
string(1) "6"
["description"]=>
string(0) ""
["in_active_trail"]=>
bool(false)
["access"]=>
bool(true)
["href"]=>
string(7) "node/16"
["localized_options"]=>
array(0) {
}
}
}
[496]=>
array(7) {
["#theme"]=>
string(25) "menu_link__menu_secciones"
["#attributes"]=>
array(1) {
["class"]=>
array(1) {
[0]=>
string(4) "leaf"
}
}
["#title"]=>
string(9) "PROYECTOS"
["#href"]=>
string(7) "node/17"
["#localized_options"]=>
array(1) {
["attributes"]=>
array(0) {
}
}
["#below"]=>
array(0) {
}
["#original_link"]=>
array(45) {
["menu_name"]=>
string(14) "menu-secciones"
["mlid"]=>
string(3) "496"
["plid"]=>
string(1) "0"
["link_path"]=>
string(7) "node/17"
["router_path"]=>
string(6) "node/%"
["link_title"]=>
string(9) "PROYECTOS"
["options"]=>
array(1) {
["attributes"]=>
array(0) {
}
}
["module"]=>
string(4) "menu"
["hidden"]=>
string(1) "0"
["external"]=>
string(1) "0"
["has_children"]=>
string(1) "0"
["expanded"]=>
string(1) "0"
["weight"]=>
string(3) "-45"
["depth"]=>
string(1) "1"
["customized"]=>
string(1) "1"
["p1"]=>
string(3) "496"
["p2"]=>
string(1) "0"
["p3"]=>
string(1) "0"
["p4"]=>
string(1) "0"
["p5"]=>
string(1) "0"
["p6"]=>
string(1) "0"
["p7"]=>
string(1) "0"
["p8"]=>
string(1) "0"
["p9"]=>
string(1) "0"
["updated"]=>
string(1) "0"
["load_functions"]=>
string(26) "a:1:{i:1;s:9:"node_load";}"
["to_arg_functions"]=>
string(0) ""
["access_callback"]=>
string(11) "node_access"
["access_arguments"]=>
string(29) "a:2:{i:0;s:4:"view";i:1;i:1;}"
["page_callback"]=>
string(14) "node_page_view"
["page_arguments"]=>
string(14) "a:1:{i:0;i:1;}"
["delivery_callback"]=>
string(0) ""
["tab_parent"]=>
string(0) ""
["tab_root"]=>
string(6) "node/%"
["title"]=>
string(9) "PROYECTOS"
["title_callback"]=>
string(15) "node_page_title"
["title_arguments"]=>
string(14) "a:1:{i:0;i:1;}"
["theme_callback"]=>
string(0) ""
["theme_arguments"]=>
string(6) "a:0:{}"
["type"]=>
string(1) "6"
["description"]=>
string(0) ""
["in_active_trail"]=>
bool(false)
["access"]=>
bool(true)
["href"]=>
string(7) "node/17"
["localized_options"]=>
array(1) {
["attributes"]=>
array(0) {
}
}
}
}
[502]=>
array(7) {
["#theme"]=>
string(25) "menu_link__menu_secciones"
["#attributes"]=>
array(1) {
["class"]=>
array(1) {
[0]=>
string(4) "leaf"
}
}
["#title"]=>
string(4) "FORO"
["#href"]=>
string(7) "node/21"
["#localized_options"]=>
array(1) {
["attributes"]=>
array(1) {
["title"]=>
string(0) ""
}
}
["#below"]=>
array(0) {
}
["#original_link"]=>
array(45) {
["menu_name"]=>
string(14) "menu-secciones"
["mlid"]=>
string(3) "502"
["plid"]=>
string(1) "0"
["link_path"]=>
string(7) "node/21"
["router_path"]=>
string(6) "node/%"
["link_title"]=>
string(4) "FORO"
["options"]=>
array(1) {
["attributes"]=>
array(1) {
["title"]=>
string(0) ""
}
}
["module"]=>
string(4) "menu"
["hidden"]=>
string(1) "0"
["external"]=>
string(1) "0"
["has_children"]=>
string(1) "0"
["expanded"]=>
string(1) "0"
["weight"]=>
string(3) "-44"
["depth"]=>
string(1) "1"
["customized"]=>
string(1) "1"
["p1"]=>
string(3) "502"
["p2"]=>
string(1) "0"
["p3"]=>
string(1) "0"
["p4"]=>
string(1) "0"
["p5"]=>
string(1) "0"
["p6"]=>
string(1) "0"
["p7"]=>
string(1) "0"
["p8"]=>
string(1) "0"
["p9"]=>
string(1) "0"
["updated"]=>
string(1) "0"
["load_functions"]=>
string(26) "a:1:{i:1;s:9:"node_load";}"
["to_arg_functions"]=>
string(0) ""
["access_callback"]=>
string(11) "node_access"
["access_arguments"]=>
string(29) "a:2:{i:0;s:4:"view";i:1;i:1;}"
["page_callback"]=>
string(14) "node_page_view"
["page_arguments"]=>
string(14) "a:1:{i:0;i:1;}"
["delivery_callback"]=>
string(0) ""
["tab_parent"]=>
string(0) ""
["tab_root"]=>
string(6) "node/%"
["title"]=>
string(4) "FORO"
["title_callback"]=>
string(15) "node_page_title"
["title_arguments"]=>
string(14) "a:1:{i:0;i:1;}"
["theme_callback"]=>
string(0) ""
["theme_arguments"]=>
string(6) "a:0:{}"
["type"]=>
string(1) "6"
["description"]=>
string(0) ""
["in_active_trail"]=>
bool(false)
["access"]=>
bool(true)
["href"]=>
string(7) "node/21"
["localized_options"]=>
array(1) {
["attributes"]=>
array(1) {
["title"]=>
string(0) ""
}
}
}
}
[739]=>
array(7) {
["#theme"]=>
string(25) "menu_link__menu_secciones"
["#attributes"]=>
array(1) {
["class"]=>
array(1) {
[0]=>
string(4) "leaf"
}
}
["#title"]=>
string(9) "ESTATUTOS"
["#href"]=>
string(8) "node/116"
["#localized_options"]=>
array(0) {
}
["#below"]=>
array(0) {
}
["#original_link"]=>
array(45) {
["menu_name"]=>
string(14) "menu-secciones"
["mlid"]=>
string(3) "739"
["plid"]=>
string(1) "0"
["link_path"]=>
string(8) "node/116"
["router_path"]=>
string(6) "node/%"
["link_title"]=>
string(9) "ESTATUTOS"
["options"]=>
array(0) {
}
["module"]=>
string(4) "menu"
["hidden"]=>
string(1) "0"
["external"]=>
string(1) "0"
["has_children"]=>
string(1) "0"
["expanded"]=>
string(1) "0"
["weight"]=>
string(3) "-43"
["depth"]=>
string(1) "1"
["customized"]=>
string(1) "1"
["p1"]=>
string(3) "739"
["p2"]=>
string(1) "0"
["p3"]=>
string(1) "0"
["p4"]=>
string(1) "0"
["p5"]=>
string(1) "0"
["p6"]=>
string(1) "0"
["p7"]=>
string(1) "0"
["p8"]=>
string(1) "0"
["p9"]=>
string(1) "0"
["updated"]=>
string(1) "0"
["load_functions"]=>
string(26) "a:1:{i:1;s:9:"node_load";}"
["to_arg_functions"]=>
string(0) ""
["access_callback"]=>
string(11) "node_access"
["access_arguments"]=>
string(29) "a:2:{i:0;s:4:"view";i:1;i:1;}"
["page_callback"]=>
string(14) "node_page_view"
["page_arguments"]=>
string(14) "a:1:{i:0;i:1;}"
["delivery_callback"]=>
string(0) ""
["tab_parent"]=>
string(0) ""
["tab_root"]=>
string(6) "node/%"
["title"]=>
string(9) "ESTATUTOS"
["title_callback"]=>
string(15) "node_page_title"
["title_arguments"]=>
string(14) "a:1:{i:0;i:1;}"
["theme_callback"]=>
string(0) ""
["theme_arguments"]=>
string(6) "a:0:{}"
["type"]=>
string(1) "6"
["description"]=>
string(0) ""
["in_active_trail"]=>
bool(false)
["access"]=>
bool(true)
["href"]=>
string(8) "node/116"
["localized_options"]=>
array(0) {
}
}
}
[317]=>
array(7) {
["#theme"]=>
string(25) "menu_link__menu_secciones"
["#attributes"]=>
array(1) {
["class"]=>
array(2) {
[0]=>
string(4) "last"
[1]=>
string(4) "leaf"
}
}
["#title"]=>
string(8) "CONTACTO"
["#href"]=>
string(7) "contact"
["#localized_options"]=>
array(1) {
["attributes"]=>
array(1) {
["title"]=>
string(172) "Es importante que el E-Mail este correctamente escrito de lo contrario el sistema no recibira su información.

Podes contactarte con nosotros completando el formulario. "
}
}
["#below"]=>
array(0) {
}
["#original_link"]=>
array(45) {
["menu_name"]=>
string(14) "menu-secciones"
["mlid"]=>
string(3) "317"
["plid"]=>
string(1) "0"
["link_path"]=>
string(7) "contact"
["router_path"]=>
string(7) "contact"
["link_title"]=>
string(8) "CONTACTO"
["options"]=>
array(1) {
["attributes"]=>
array(1) {
["title"]=>
string(172) "Es importante que el E-Mail este correctamente escrito de lo contrario el sistema no recibira su información.

Podes contactarte con nosotros completando el formulario. "
}
}
["module"]=>
string(6) "system"
["hidden"]=>
string(1) "0"
["external"]=>
string(1) "0"
["has_children"]=>
string(1) "0"
["expanded"]=>
string(1) "0"
["weight"]=>
string(3) "-42"
["depth"]=>
string(1) "1"
["customized"]=>
string(1) "1"
["p1"]=>
string(3) "317"
["p2"]=>
string(1) "0"
["p3"]=>
string(1) "0"
["p4"]=>
string(1) "0"
["p5"]=>
string(1) "0"
["p6"]=>
string(1) "0"
["p7"]=>
string(1) "0"
["p8"]=>
string(1) "0"
["p9"]=>
string(1) "0"
["updated"]=>
string(1) "0"
["load_functions"]=>
string(0) ""
["to_arg_functions"]=>
string(0) ""
["access_callback"]=>
string(11) "user_access"
["access_arguments"]=>
string(47) "a:1:{i:0;s:29:"access site-wide contact form";}"
["page_callback"]=>
string(15) "drupal_get_form"
["page_arguments"]=>
string(35) "a:1:{i:0;s:17:"contact_site_form";}"
["delivery_callback"]=>
string(0) ""
["tab_parent"]=>
string(0) ""
["tab_root"]=>
string(7) "contact"
["title"]=>
string(8) "CONTACTO"
["title_callback"]=>
string(1) "t"
["title_arguments"]=>
string(0) ""
["theme_callback"]=>
string(0) ""
["theme_arguments"]=>
string(6) "a:0:{}"
["type"]=>
string(2) "20"
["description"]=>
string(0) ""
["in_active_trail"]=>
bool(false)
["href"]=>
string(7) "contact"
["access"]=>
bool(true)
["localized_options"]=>
array(1) {
["attributes"]=>
array(1) {
["title"]=>
string(172) "Es importante que el E-Mail este correctamente escrito de lo contrario el sistema no recibira su información.

Podes contactarte con nosotros completando el formulario. "
}
}
}
}
["#sorted"]=>
bool(true)
["#theme_wrappers"]=>
array(2) {
[0]=>
string(25) "menu_tree__menu_secciones"
[1]=>
string(5) "block"
}
["#contextual_links"]=>
array(2) {
["menu"]=>
array(2) {
[0]=>
string(27) "admin/structure/menu/manage"
[1]=>
array(1) {
[0]=>
string(14) "menu-secciones"
}
}
["block"]=>
array(2) {
[0]=>
string(28) "admin/structure/block/manage"
[1]=>
array(2) {
[0]=>
string(4) "menu"
[1]=>
string(14) "menu-secciones"
}
}
}
["#block"]=>
object(stdClass)#356 (13) {
["bid"]=>
string(2) "91"
["module"]=>
string(4) "menu"
["delta"]=>
string(14) "menu-secciones"
["theme"]=>
string(6) "beauty"
["status"]=>
string(1) "1"
["weight"]=>
string(3) "-15"
["region"]=>
string(12) "sidebar_left"
["custom"]=>
string(1) "0"
["visibility"]=>
string(1) "0"
["pages"]=>
string(0) ""
["title"]=>
string(0) ""
["cache"]=>
string(2) "-1"
["subject"]=>
string(9) "Secciones"
}
["#weight"]=>
int(1)
}