コード例 #1
0
ファイル: SqlDatabaseBase.php プロジェクト: jivoo/jivoo
 /**
  * Convert table name. E.g. "UserSession" to "prefix_user_session".
  * @param string $name Table name.
  * @return string Real table name.
  */
 public function tableName($name)
 {
     return $this->tablePrefix . Utilities::camelCaseToUnderscores($name);
 }