コード例 #1
0
 /**
  * Convert DB row to entity object
  * 
  * @param Zend_Db_Table_Row_Abstract $row
  * @param Application_Model_Application $application
  */
 public static function rowToEntity(Zend_Db_Table_Row_Abstract $row, Application_Model_Application $application)
 {
     $application->set_email_settings(self::getJsonSetings($row->email_settings))->set_fb_settings(self::getJsonSetings($row->fb_settings))->set_twitter_settings(self::getJsonSetings($row->twitter_settings))->set_og_settings(self::getJsonSetings($row->og_settings))->set_id($row->id)->set_name($row->name)->set_status($row->status)->set_status_dt($row->status_dt)->set_style_json(self::getJsonSetings($row->style_json))->set_settings(self::getJsonSetings($row->settings))->set_theme_settings(self::getJsonSetings($row->theme_settings));
 }