By adding an id element to the table vars, other modules can identify the table being themed using hook_preprocess_table. This patch does this and allows for the modification of the tables produced by prod_monitor. Here is a code example of how this could be implemented:
/**
* Implements hook_preprocess_table().
*/
function my_module_preprocess_table(&$vars) {
if ($vars['prod_monitor_id'] === 'overview_form') {
...
Closed: outdated
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.