Skip to content

Commit

Permalink
Updates to release v1.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-v committed Dec 12, 2015
1 parent 8bd447a commit 7c6eb2a
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions Enum.php
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public static function initI18N()
return;
}
Yii::setAlias("@kvenum", __DIR__);
Yii::$app->i18n->translations['kvenum'] = [
Yii::$app->i18n->translations['kvenum*'] = [
'class' => 'yii\i18n\PhpMessageSource',
'basePath' => "@kvenum/messages",
'forceTranslation' => true
Expand Down Expand Up @@ -665,16 +665,16 @@ public static function boolList($false = null, $true = null)
/**
* Convert a PHP array to HTML table
*
* @param array $array the associative array to be converted
* @param boolean $transpose whether to show keys as rows instead of columns.
* This parameter should be used only for a single dimensional associative array.
* If used for a multidimensional array, the sub array will be imploded as text.
* @param boolean $recursive whether to recursively generate tables for multi-dimensional arrays
* @param boolean $typeHint whether to show the data type as a hint
* @param string $null the content to display for blank cells
* @param array $tableOptions the HTML attributes for the table
* @param array $keyOptions the HTML attributes for the array key
* @param array $valueOptions the HTML attributes for the array value
* @param array $array the associative array to be converted
* @param bool $transpose whether to show keys as rows instead of columns. This parameter should be used only for
* a single dimensional associative array. If used for a multidimensional array, the sub array will be imploded
* as text.
* @param bool $recursive whether to recursively generate tables for multi-dimensional arrays
* @param bool $typeHint whether to show the data type as a hint
* @param string $null the content to display for blank cells
* @param array $tableOptions the HTML attributes for the table
* @param array $keyOptions the HTML attributes for the array key
* @param array $valueOptions the HTML attributes for the array value
*
* @return string|boolean
*/
Expand Down

0 comments on commit 7c6eb2a

Please sign in to comment.