Welcome Guest, Not a member yet? Register   Sign In
Nested arrays in parser with conditional rendering
#1

Hi,

I´d like to apply a conditional rendering in a nested iterator:
Code:
{parent}
  {children}
    {if $child->someAttribute == "1"}
      HELLO!
    {endif}
  {children}
{/parent}

I tried to use a static index and it works, but would be necessary to know the current iterator index
Code:
{parent}
  {children}
    {if $parent[0]->children[0]->someAttribute == "1"}
      HELLO!
    {endif}
  {children}
{/parent}
If there was something like:
Code:
{if $parent[$parent_idx]->children[$children_idx]->someAttribute == "1"}

Is this possible? There is any workaround?
Thanks in advance!
Reply
#2

Code:
CREATE TABLE `categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL DEFAULT '0',
  `category` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
)

-----------------------------------------------------------

INSERT INTO `categories` (`id`, `parent_id`, `category`) VALUES
(1, 0, 'General'),
(2, 0, 'PHP'),
(3, 0, 'HTML'),
(4, 3, 'Tables'),
(5, 2, 'Functions'),
(6, 2, 'Variables'),
(7, 3, 'Forms');

PHP Code:
public function generateTree(array $dataint $parent 0int $depth 0): string
{
    $tree "<ul>\n";
    for ($i=0$ni=count($data); $i $ni$i++) {
        if ($data[$i]['parent_id'] == $parent) {    
            
            $tree 
.= "<li>\n";
            $tree .= $data[$i]['category'];
            $tree .= generateTree($data$data[$i]['id'], $depth+1);
            $tree .= "</li>\n";
        }
    }

    $tree .= "</ul>\n";

    return $tree;

What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply




Theme © iAndrew 2016 - Forum software by © MyBB