When adding the option type E to a table view, each row will have an edit option in the tool bars of the far right.
To add the edit tool, from the init Sections module add the option type E.
$PAGES_CONTENT->setOption("PAGES,VER PAGINAS,VOIR PAGES","aside","5","VDE", true);
Or use the manual value directly in the page
$options['edit'] = true / false;
To setup EDIT you need to declare an array $editOption with the following values:
/*Edit Option "E"*/ $editOption= [ 'link' => => getPath('BILLING','CLIENTS','EDIT INVOICE','FVUQWCDEPKpa','%ID%').'?other=%COL%', // the format can be anything with any number of wild cards, in this example %ID%, %COL%, etc must match to a column declared in $query 'icon' =>'<i class="far fa-edit faactions"></i>', //optional, these values are default 'title'=> translate('Edit','Editar','Modifier') //optional, these values are default ];
NOTE: when icon and title are not declared by default Edit will show a pencil with title "edit".