Replicating the onlineShop

In the sample onlineShop I see in the event of the customer grid in onrecord this parameter: {orders_link} = " " . {lang_customer_order} . " ";
Can someone help me to understand what that means? Is that a link to point to the grid customer_order? How to obtain this parameter {lang_customer_order} in my application?

Thanks in advance

Hello,
Generally this kind of variable represents the value of a single’s record column. For example.

Select name, age from users;

onRecord event you can access the values from db for single record like:


$name = {name};
$age = {age};

However, sometimes you want to create a custom column’s grid not having relation with sql statement, lets say like a “Go” button, so most people create a custom field (sidebar menu) and name it as you is you want, for example “go_field”, then you can set the value for each record for this column like this:

{go_field} = "Go to {name}";