0

I have the next array($columsData):

Array
(
    [avatar] => Array
        (
            [title] => Avatar
            [sort] => 
            [no_html_escape] => 1
        )
    [title] => Array
        (
            [title] => Title
            [sort] => 
        )
)

And how can i make this array like this:

Array
(
    [id] => Array
        (
            [title] => Id
            [no_html_escape] => 1
        )
    [avatar] => Array
        (
            [title] => Avatar
            [no_html_escape] => 1
        )
    [title] => Array
        (
            [title] => Title
            [no_html_escape] => 1
        )
)

Thank you.

NullUserException
  • 77,975
  • 25
  • 199
  • 226
Alex Pliutau
  • 19,672
  • 26
  • 103
  • 139

1 Answers1

0
$columsData['id']['title'] = 'id';
$columsData['id']['no_html_escape'] = 1;
Alex Pliutau
  • 19,672
  • 26
  • 103
  • 139