template() public method

Template: A Template for Mailings ==SQL Schema== template_id (int) Database ID/Key name (str) Descriptive name for field (used for short identification) description (str) Summary of Template body (str) HTML body altbody (str) Text body
public template ( )
コード例 #1
0
 function &makeDB(&$row)
 {
     $in = @array('id' => $row['template_id'], 'name' => $row['name'], 'description' => $row['description'], 'body' => $row['body'], 'altbody' => $row['altbody']);
     $o = Pommo_Api::getParams(Pommo_Type::template(), $in);
     return $o;
 }