DataTables Editor SSP Method
DataTables Editor SSP Method
bbrindza
Posts: 316Questions: 73Answers: 1
in DataTables
Give this variable...
$userProfile = $_SESSION['userInfo']['profile'];
What is the method a need in my Field instance of the ssp PHP script that would set the column on insert or update with the $userProfile?
This is the column in my Field instance
Field::inst('UPDATED_BY'),
This question has accepted answers - jump to:
This discussion has been closed.
Answers
The
Field->setValue()
method is what you want here:Allan
p.s. The full PHP library reference docs are available here.
Thank you Allan.