reenadak

change BG color of rows in MATE

Sep 25th, 2017
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. // change BGcolor of rows in MATE
  2.  
  3. function changeBgColor($rowSets,$rowInfo,$rowNum)
  4. {
  5. $rowSets['bgcolor'] = '#ffffff';
  6. $rowSets['bgcolor'] = $rowInfo['color_hex'];
  7. $rowSets['class'] = 'clickable';
  8. return $rowSets;
  9. }
  10.  
  11. // & then use
  12. $this->Editor->setConfig('modifyRowSets',array(&$this,'changeBgColor'));
Add Comment
Please, Sign In to add comment