アクション: Set a data value、 PHPコードを利用して、Bodyのh2タグの内容を抽出し、Summaryにセットします
		
<?php
  $doc = new DOMDocument();
  libxml_use_internal_errors(true);
  $doc->loadHTML( mb_convert_encoding($node->body['und'][0]['value'], 'HTML-ENTITIES', 'UTF-8') );
  
  $h2 = $doc->getElementsByTagName('h2');
  if(count($h2)>0){
    $out = "<ul>";
	for($c = 0; $c < $h2->length; $c++){ 
      $out .=  "<li>".$h2->item($c)->nodeValue."</li>" ; 
    }
	$out .= "</ul>";
	
	echo $out;
  }
   
?>