コード例 #1
0
ファイル: Conditions.php プロジェクト: jsiefer/emarketing
 public function render(Varien_Data_Form_Element_Abstract $element)
 {
     $goal = $element->getTracker()->getGoal();
     if ($goal) {
         $html = '<div class="filters">';
         $html .= $goal->getFilter()->asHtml();
         $html .= '</div>';
         return $html;
     }
     return '';
 }