getColumn()->getIndex() === 'seo_score') { $updateKey = $row->getId() . '-product-' . (int) Mage::app()->getRequest()->getParam('store'); //Only render the seo score column. if($row->getSeoScore() === null) { //No SEO score is known yet. return '
' . Mage::helper('reload_seo')->__('Unknown') . '
'; } //Create the score html and return it. $score = $row->getSeoScore(); return '
' . $score . '
'; } } }