Example #1
0
 public function renderCommonAttributes(ICompiler $compiler, IPiccoNode $node)
 {
     $attributeList = null;
     foreach ($node->getAttributeList() as $k => $v) {
         $attributeList[] = $k . '="' . $v . '"';
     }
     return $attributeList !== null ? ' ' . implode(' ', $attributeList) : null;
 }