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
  • 81,190
  • 27
  • 202
  • 228
Alex Pliutau
  • 20,640
  • 26
  • 107
  • 142

1 Answers1

0
$columsData['id']['title'] = 'id';
$columsData['id']['no_html_escape'] = 1;
Alex Pliutau
  • 20,640
  • 26
  • 107
  • 142