diff --git a/docs/_a_p_i_stats_8php.html b/docs/_a_p_i_stats_8php.html index 3df186f7..b8f62c82 100644 --- a/docs/_a_p_i_stats_8php.html +++ b/docs/_a_p_i_stats_8php.html @@ -108,7 +108,7 @@ diff --git a/docs/_a_p_i_stats_8php_source.html b/docs/_a_p_i_stats_8php_source.html index fe059bfb..a22beb8b 100644 --- a/docs/_a_p_i_stats_8php_source.html +++ b/docs/_a_p_i_stats_8php_source.html @@ -213,7 +213,7 @@ diff --git a/docs/_cron_8php.html b/docs/_cron_8php.html index 9e273a50..dd44938e 100644 --- a/docs/_cron_8php.html +++ b/docs/_cron_8php.html @@ -108,7 +108,7 @@ diff --git a/docs/_cron_8php_source.html b/docs/_cron_8php_source.html index 934072a4..45f69422 100644 --- a/docs/_cron_8php_source.html +++ b/docs/_cron_8php_source.html @@ -266,7 +266,7 @@ diff --git a/docs/_crypto_8php.html b/docs/_crypto_8php.html index 0ce97b5a..50d0ae63 100644 --- a/docs/_crypto_8php.html +++ b/docs/_crypto_8php.html @@ -108,7 +108,7 @@ diff --git a/docs/_crypto_8php_source.html b/docs/_crypto_8php_source.html index 9af768f1..36c2c5f8 100644 --- a/docs/_crypto_8php_source.html +++ b/docs/_crypto_8php_source.html @@ -143,7 +143,7 @@ diff --git a/docs/_error_reporter_8php.html b/docs/_error_reporter_8php.html index ba686c38..afd1cc1e 100644 --- a/docs/_error_reporter_8php.html +++ b/docs/_error_reporter_8php.html @@ -108,7 +108,7 @@ diff --git a/docs/_error_reporter_8php_source.html b/docs/_error_reporter_8php_source.html index 915ea1d2..5a66b2eb 100644 --- a/docs/_error_reporter_8php_source.html +++ b/docs/_error_reporter_8php_source.html @@ -151,7 +151,7 @@ diff --git a/docs/_helper_8php.html b/docs/_helper_8php.html index dca86e25..888de2b5 100644 --- a/docs/_helper_8php.html +++ b/docs/_helper_8php.html @@ -108,7 +108,7 @@ diff --git a/docs/_helper_8php_source.html b/docs/_helper_8php_source.html index 8bf04eed..8e671513 100644 --- a/docs/_helper_8php_source.html +++ b/docs/_helper_8php_source.html @@ -377,7 +377,7 @@ diff --git a/docs/_hook_8php.html b/docs/_hook_8php.html index bbffa1e2..3c4b14d4 100644 --- a/docs/_hook_8php.html +++ b/docs/_hook_8php.html @@ -102,7 +102,7 @@ diff --git a/docs/_hook_8php_source.html b/docs/_hook_8php_source.html index d8bdd2c3..52268602 100644 --- a/docs/_hook_8php_source.html +++ b/docs/_hook_8php_source.html @@ -143,7 +143,7 @@ diff --git a/docs/_invalid_language_exception_8php.html b/docs/_invalid_language_exception_8php.html index c018d887..07c5cba3 100644 --- a/docs/_invalid_language_exception_8php.html +++ b/docs/_invalid_language_exception_8php.html @@ -108,7 +108,7 @@ diff --git a/docs/_invalid_language_exception_8php_source.html b/docs/_invalid_language_exception_8php_source.html index 5de8dd2f..4aa3afa1 100644 --- a/docs/_invalid_language_exception_8php_source.html +++ b/docs/_invalid_language_exception_8php_source.html @@ -128,7 +128,7 @@ diff --git a/docs/_language_8php.html b/docs/_language_8php.html index 75b1f66b..6ffd71b0 100644 --- a/docs/_language_8php.html +++ b/docs/_language_8php.html @@ -108,7 +108,7 @@ diff --git a/docs/_language_8php_source.html b/docs/_language_8php_source.html index 0ad88924..6d3ede0e 100644 --- a/docs/_language_8php_source.html +++ b/docs/_language_8php_source.html @@ -321,7 +321,7 @@ diff --git a/docs/_languages_8php.html b/docs/_languages_8php.html index 82382788..7b69c6da 100644 --- a/docs/_languages_8php.html +++ b/docs/_languages_8php.html @@ -108,7 +108,7 @@ diff --git a/docs/_languages_8php_source.html b/docs/_languages_8php_source.html index 689421ff..f92d0592 100644 --- a/docs/_languages_8php_source.html +++ b/docs/_languages_8php_source.html @@ -226,7 +226,7 @@ diff --git a/docs/_migrations_8php.html b/docs/_migrations_8php.html index c6a595a2..f22c4539 100644 --- a/docs/_migrations_8php.html +++ b/docs/_migrations_8php.html @@ -108,7 +108,7 @@ diff --git a/docs/_migrations_8php_source.html b/docs/_migrations_8php_source.html index b7249d9d..baf11198 100644 --- a/docs/_migrations_8php_source.html +++ b/docs/_migrations_8php_source.html @@ -174,9 +174,9 @@
121  public function migrate() {
122  echo "Starting Migration..." . PHP_EOL;
123  $files = glob(__DIR__ . '/../migrations/*.{php}', GLOB_BRACE);
-
124 
+
124 
125  natsort($files);
-
126 
+
126 
127  foreach ($files as $file) {
128  if (basename($file) == "template.php") {
129  continue;
@@ -246,57 +246,71 @@
209  throw new \Exception($statement->errorInfo());
210  }
211 
-
220  protected function addColumn(string $Table, array $Column) {
-
221  echo "Adding column to Table $Table..." . PHP_EOL;
-
222  $SQL = "ALTER TABLE `$Table` ADD COLUMN `$Column[0]` $Column[1] $Column[2];";
+
220  protected function dropColumn(string $Table, string $Column) {
+
221  echo "Removing column from Table $Table..." . PHP_EOL;
+
222  $SQL = "ALTER TABLE `$Table` DROP COLUMN `$Column`";
223 
224  $statement = $this->Database->prepare($SQL);
225 
226  if ($statement->execute()) {
-
227  echo "Added Column to Table $Table!" . PHP_EOL;
+
227  echo "Removed Column from Table $Table!" . PHP_EOL;
228  return true;
229  }
-
230  echo "Failed to add Column to Table $Table!" . PHP_EOL;
+
230  echo "Failed to remove Column from Table $Table!" . PHP_EOL;
231  throw new \Exception($statement->errorInfo());
232  }
233 
-
242  protected function createTable(string $Table, ...$Columns) {
-
243  echo "Creating Table $Table..." . PHP_EOL;
-
244  $SQL = "CREATE TABLE `$Table` (";
-
245  $AutoIncrement = false;
-
246  foreach ($Columns as $Key => $Column) {
-
247  $Name = $Column[0];
-
248  $Type = $Column[1];
-
249  $Additional = $Column[2];
-
250  if (strpos($Additional, "AUTO_INCREMENT") !== false) {
-
251  $AutoIncrement = $Name;
-
252  }
-
253  $SQL .= "`$Name` $Type $Additional,";
-
254  if ($Key == count($Columns) - 1) {
-
255  $SQL = substr($SQL, 0, -1);
-
256  if ($AutoIncrement !== false) {
-
257  $SQL .= ", KEY `$AutoIncrement` (`$AutoIncrement`)";
-
258  }
-
259  }
-
260  }
-
261  $SQL .= ") ENGINE=InnoDB DEFAULT CHARSET=utf8mb4";
-
262 
-
263 
-
264  $statement = $this->Database->prepare($SQL);
-
265 
-
266  if ($statement->execute()) {
-
267  echo "Creating Table $Table!" . PHP_EOL;
-
268  return true;
-
269  }
-
270  echo "Failed to create Table $Table!" . PHP_EOL;
-
271  throw new \Exception($statement->errorInfo());
-
272  }
-
273 
-
274 }
+
242  protected function addColumn(string $Table, array $Column) {
+
243  echo "Adding column to Table $Table..." . PHP_EOL;
+
244  $SQL = "ALTER TABLE `$Table` ADD COLUMN `$Column[0]` $Column[1] $Column[2];";
+
245 
+
246  $statement = $this->Database->prepare($SQL);
+
247 
+
248  if ($statement->execute()) {
+
249  echo "Added Column to Table $Table!" . PHP_EOL;
+
250  return true;
+
251  }
+
252  echo "Failed to add Column to Table $Table!" . PHP_EOL;
+
253  throw new \Exception($statement->errorInfo());
+
254  }
+
255 
+
264  protected function createTable(string $Table, ...$Columns) {
+
265  echo "Creating Table $Table..." . PHP_EOL;
+
266  $SQL = "CREATE TABLE `$Table` (";
+
267  $AutoIncrement = false;
+
268  foreach ($Columns as $Key => $Column) {
+
269  $Name = $Column[0];
+
270  $Type = $Column[1];
+
271  $Additional = $Column[2];
+
272  if (strpos($Additional, "AUTO_INCREMENT") !== false) {
+
273  $AutoIncrement = $Name;
+
274  }
+
275  $SQL .= "`$Name` $Type $Additional,";
+
276  if ($Key == count($Columns) - 1) {
+
277  $SQL = substr($SQL, 0, -1);
+
278  if ($AutoIncrement !== false) {
+
279  $SQL .= ", KEY `$AutoIncrement` (`$AutoIncrement`)";
+
280  }
+
281  }
+
282  }
+
283  $SQL .= ") ENGINE=InnoDB DEFAULT CHARSET=utf8mb4";
+
284 
+
285 
+
286  $statement = $this->Database->prepare($SQL);
+
287 
+
288  if ($statement->execute()) {
+
289  echo "Creating Table $Table!" . PHP_EOL;
+
290  return true;
+
291  }
+
292  echo "Failed to create Table $Table!" . PHP_EOL;
+
293  throw new \Exception($statement->errorInfo());
+
294  }
+
295 
+
296 }
crisp\core\Migrations\DB_UNIQUEKEY
const DB_UNIQUEKEY
Definition: Migrations.php:45
-
crisp\core\Migrations\addColumn
addColumn(string $Table, array $Column)
Definition: Migrations.php:220
+
crisp\core\Migrations\addColumn
addColumn(string $Table, array $Column)
Definition: Migrations.php:242
crisp\core\Migrations\DB_TIMESTAMP
const DB_TIMESTAMP
Definition: Migrations.php:39
crisp\core\Migrations\DB_PRIMARYKEY
const DB_PRIMARYKEY
Definition: Migrations.php:44
crisp\core\Migrations\DB_VARCHAR
const DB_VARCHAR
Definition: Migrations.php:36
@@ -305,13 +319,14 @@
crisp\core\Migrations\__construct
__construct()
Definition: Migrations.php:47
crisp\core\Migrations
Definition: Migrations.php:26
crisp\core\Migrations\end
end()
Definition: Migrations.php:87
+
crisp\core\Migrations\dropColumn
dropColumn(string $Table, string $Column)
Definition: Migrations.php:220
crisp\core\Migrations\begin
begin()
Definition: Migrations.php:57
crisp\core\Migrations\DB_LONGTEXT
const DB_LONGTEXT
Definition: Migrations.php:41
crisp\core\Migrations\$Database
PDO $Database
Definition: Migrations.php:32
crisp\core\Migrations\migrate
migrate()
Definition: Migrations.php:121
crisp\core\Migrations\DB_TEXT
const DB_TEXT
Definition: Migrations.php:37
crisp\core\Migrations\DB_BOOL
const DB_BOOL
Definition: Migrations.php:40
-
crisp\core\Migrations\createTable
createTable(string $Table,... $Columns)
Definition: Migrations.php:242
+
crisp\core\Migrations\createTable
createTable(string $Table,... $Columns)
Definition: Migrations.php:264
crisp\core\Migrations\isMigrated
isMigrated(string $file)
Definition: Migrations.php:104
crisp\core\Migrations\DB_INTEGER
const DB_INTEGER
Definition: Migrations.php:38
crisp\api\Helper\filterAlphaNum
static filterAlphaNum($String)
Definition: Helper.php:95
@@ -322,7 +337,7 @@ diff --git a/docs/_my_s_q_l_8php.html b/docs/_my_s_q_l_8php.html index 05235da4..48423e9c 100644 --- a/docs/_my_s_q_l_8php.html +++ b/docs/_my_s_q_l_8php.html @@ -108,7 +108,7 @@ diff --git a/docs/_my_s_q_l_8php_source.html b/docs/_my_s_q_l_8php_source.html index 39218f4c..1f98db90 100644 --- a/docs/_my_s_q_l_8php_source.html +++ b/docs/_my_s_q_l_8php_source.html @@ -137,7 +137,7 @@ diff --git a/docs/_phoenix_8php.html b/docs/_phoenix_8php.html index cd3a4571..d5bd6fe9 100644 --- a/docs/_phoenix_8php.html +++ b/docs/_phoenix_8php.html @@ -108,7 +108,7 @@ diff --git a/docs/_phoenix_8php_source.html b/docs/_phoenix_8php_source.html index 2036bddc..b298f092 100644 --- a/docs/_phoenix_8php_source.html +++ b/docs/_phoenix_8php_source.html @@ -967,7 +967,7 @@ diff --git a/docs/_plugin_8php.html b/docs/_plugin_8php.html index 087b6a9a..5315e962 100644 --- a/docs/_plugin_8php.html +++ b/docs/_plugin_8php.html @@ -108,7 +108,7 @@ diff --git a/docs/_plugin_8php_source.html b/docs/_plugin_8php_source.html index 08b05671..a5f5c4be 100644 --- a/docs/_plugin_8php_source.html +++ b/docs/_plugin_8php_source.html @@ -236,7 +236,7 @@ diff --git a/docs/_plugin_a_p_i_8php.html b/docs/_plugin_a_p_i_8php.html index 7cd33f3b..700c12eb 100644 --- a/docs/_plugin_a_p_i_8php.html +++ b/docs/_plugin_a_p_i_8php.html @@ -108,7 +108,7 @@ diff --git a/docs/_plugin_a_p_i_8php_source.html b/docs/_plugin_a_p_i_8php_source.html index e32b9d50..e4b7e5aa 100644 --- a/docs/_plugin_a_p_i_8php_source.html +++ b/docs/_plugin_a_p_i_8php_source.html @@ -153,7 +153,7 @@ diff --git a/docs/_plugins_8php.html b/docs/_plugins_8php.html index ad273ffe..4f2ffe76 100644 --- a/docs/_plugins_8php.html +++ b/docs/_plugins_8php.html @@ -108,7 +108,7 @@ diff --git a/docs/_plugins_8php_source.html b/docs/_plugins_8php_source.html index 7df6a975..f950874a 100644 --- a/docs/_plugins_8php_source.html +++ b/docs/_plugins_8php_source.html @@ -668,7 +668,7 @@ diff --git a/docs/_postgres_8php.html b/docs/_postgres_8php.html index ced29bae..1afb6fb8 100644 --- a/docs/_postgres_8php.html +++ b/docs/_postgres_8php.html @@ -108,7 +108,7 @@ diff --git a/docs/_postgres_8php_source.html b/docs/_postgres_8php_source.html index 71257517..8dce1b4d 100644 --- a/docs/_postgres_8php_source.html +++ b/docs/_postgres_8php_source.html @@ -147,7 +147,7 @@ diff --git a/docs/_redis_8php.html b/docs/_redis_8php.html index 092992d1..f8fe767c 100644 --- a/docs/_redis_8php.html +++ b/docs/_redis_8php.html @@ -108,7 +108,7 @@ diff --git a/docs/_redis_8php_source.html b/docs/_redis_8php_source.html index affb654a..6d0b8c6b 100644 --- a/docs/_redis_8php_source.html +++ b/docs/_redis_8php_source.html @@ -137,7 +137,7 @@ diff --git a/docs/_theme_8php.html b/docs/_theme_8php.html index ea7cf845..a8c37646 100644 --- a/docs/_theme_8php.html +++ b/docs/_theme_8php.html @@ -108,7 +108,7 @@ diff --git a/docs/_theme_8php_source.html b/docs/_theme_8php_source.html index 807bee47..e0c5e01f 100644 --- a/docs/_theme_8php_source.html +++ b/docs/_theme_8php_source.html @@ -176,7 +176,7 @@ diff --git a/docs/_themes_8php.html b/docs/_themes_8php.html index 45eb711d..19168d94 100644 --- a/docs/_themes_8php.html +++ b/docs/_themes_8php.html @@ -108,7 +108,7 @@ diff --git a/docs/_themes_8php_source.html b/docs/_themes_8php_source.html index 1e637ff5..a836bf6d 100644 --- a/docs/_themes_8php_source.html +++ b/docs/_themes_8php_source.html @@ -405,7 +405,7 @@ diff --git a/docs/_translation_8php.html b/docs/_translation_8php.html index acb9e94f..1deeccfc 100644 --- a/docs/_translation_8php.html +++ b/docs/_translation_8php.html @@ -108,7 +108,7 @@ diff --git a/docs/_translation_8php_source.html b/docs/_translation_8php_source.html index c0ae267d..c7226bc3 100644 --- a/docs/_translation_8php_source.html +++ b/docs/_translation_8php_source.html @@ -300,7 +300,7 @@ diff --git a/docs/_universe_8php.html b/docs/_universe_8php.html index e32089c7..848b83d5 100644 --- a/docs/_universe_8php.html +++ b/docs/_universe_8php.html @@ -108,7 +108,7 @@ diff --git a/docs/_universe_8php_source.html b/docs/_universe_8php_source.html index 2a965f18..21fa029d 100644 --- a/docs/_universe_8php_source.html +++ b/docs/_universe_8php_source.html @@ -155,7 +155,7 @@ diff --git a/docs/annotated.html b/docs/annotated.html index 6a8ddf7e..9ce2e9cf 100644 --- a/docs/annotated.html +++ b/docs/annotated.html @@ -122,7 +122,7 @@ diff --git a/docs/api_2_config_8php.html b/docs/api_2_config_8php.html index 22e020c4..6682ca24 100644 --- a/docs/api_2_config_8php.html +++ b/docs/api_2_config_8php.html @@ -108,7 +108,7 @@ diff --git a/docs/api_2_config_8php_source.html b/docs/api_2_config_8php_source.html index cb90b553..6730f3db 100644 --- a/docs/api_2_config_8php_source.html +++ b/docs/api_2_config_8php_source.html @@ -259,7 +259,7 @@ diff --git a/docs/classcrisp_1_1_universe.html b/docs/classcrisp_1_1_universe.html index 251a2e00..ebe63d2e 100644 --- a/docs/classcrisp_1_1_universe.html +++ b/docs/classcrisp_1_1_universe.html @@ -283,7 +283,7 @@

diff --git a/docs/classcrisp_1_1api_1_1_a_p_i_stats.html b/docs/classcrisp_1_1api_1_1_a_p_i_stats.html index 28c0c204..96d2a070 100644 --- a/docs/classcrisp_1_1api_1_1_a_p_i_stats.html +++ b/docs/classcrisp_1_1api_1_1_a_p_i_stats.html @@ -365,7 +365,7 @@

    - +
diff --git a/docs/classcrisp_1_1api_1_1_config.html b/docs/classcrisp_1_1api_1_1_config.html index 66c1a178..644a92b9 100644 --- a/docs/classcrisp_1_1api_1_1_config.html +++ b/docs/classcrisp_1_1api_1_1_config.html @@ -387,7 +387,7 @@

    - +
diff --git a/docs/classcrisp_1_1api_1_1_error_reporter.html b/docs/classcrisp_1_1api_1_1_error_reporter.html index d8eb4247..c3a71ce4 100644 --- a/docs/classcrisp_1_1api_1_1_error_reporter.html +++ b/docs/classcrisp_1_1api_1_1_error_reporter.html @@ -216,7 +216,7 @@

    - +
diff --git a/docs/classcrisp_1_1api_1_1_helper.html b/docs/classcrisp_1_1api_1_1_helper.html index e75fd599..2ec72d40 100644 --- a/docs/classcrisp_1_1api_1_1_helper.html +++ b/docs/classcrisp_1_1api_1_1_helper.html @@ -795,7 +795,7 @@

    - +
diff --git a/docs/classcrisp_1_1api_1_1_language.html b/docs/classcrisp_1_1api_1_1_language.html index 85e11f4f..a9176aea 100644 --- a/docs/classcrisp_1_1api_1_1_language.html +++ b/docs/classcrisp_1_1api_1_1_language.html @@ -619,7 +619,7 @@

    - +
diff --git a/docs/classcrisp_1_1api_1_1_phoenix.html b/docs/classcrisp_1_1api_1_1_phoenix.html index 20551f27..524b9b36 100644 --- a/docs/classcrisp_1_1api_1_1_phoenix.html +++ b/docs/classcrisp_1_1api_1_1_phoenix.html @@ -1239,7 +1239,7 @@

    - +
diff --git a/docs/classcrisp_1_1api_1_1_translation.html b/docs/classcrisp_1_1api_1_1_translation.html index 74b19a93..59a51a66 100644 --- a/docs/classcrisp_1_1api_1_1_translation.html +++ b/docs/classcrisp_1_1api_1_1_translation.html @@ -498,7 +498,7 @@

    - +
diff --git a/docs/classcrisp_1_1api_1_1lists_1_1_cron.html b/docs/classcrisp_1_1api_1_1lists_1_1_cron.html index 7e87646b..43a57cb5 100644 --- a/docs/classcrisp_1_1api_1_1lists_1_1_cron.html +++ b/docs/classcrisp_1_1api_1_1lists_1_1_cron.html @@ -597,7 +597,7 @@

    - +
diff --git a/docs/classcrisp_1_1api_1_1lists_1_1_languages.html b/docs/classcrisp_1_1api_1_1lists_1_1_languages.html index 5b1af0ff..ad0770df 100644 --- a/docs/classcrisp_1_1api_1_1lists_1_1_languages.html +++ b/docs/classcrisp_1_1api_1_1lists_1_1_languages.html @@ -343,7 +343,7 @@

    - +
diff --git a/docs/classcrisp_1_1core_1_1_config.html b/docs/classcrisp_1_1core_1_1_config.html index af048128..5d9d345c 100644 --- a/docs/classcrisp_1_1core_1_1_config.html +++ b/docs/classcrisp_1_1core_1_1_config.html @@ -132,7 +132,7 @@

    - +
diff --git a/docs/classcrisp_1_1core_1_1_crypto.html b/docs/classcrisp_1_1core_1_1_crypto.html index caf8617c..1e217c0f 100644 --- a/docs/classcrisp_1_1core_1_1_crypto.html +++ b/docs/classcrisp_1_1core_1_1_crypto.html @@ -226,7 +226,7 @@

    - +
diff --git a/docs/classcrisp_1_1core_1_1_migrations.html b/docs/classcrisp_1_1core_1_1_migrations.html index dd15c1e5..3fc4aa0f 100644 --- a/docs/classcrisp_1_1core_1_1_migrations.html +++ b/docs/classcrisp_1_1core_1_1_migrations.html @@ -132,6 +132,8 @@    addIndex (string $Table, array $Column, $Type=self::DB_PRIMARYKEY, string $IndexName=null)   + dropColumn (string $Table, string $Column) +   addColumn (string $Table, array $Column)    createTable (string $Table,... $Columns) @@ -215,7 +217,7 @@

Definition at line 220 of file Migrations.php.

+

Definition at line 242 of file Migrations.php.

@@ -392,7 +394,59 @@

Definition at line 242 of file Migrations.php.

+

Definition at line 264 of file Migrations.php.

+ + + + +

◆ dropColumn()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
dropColumn (string $Table,
string $Column 
)
+
+protected
+
+

Remove a column from a table

Parameters
+ + + +
string$TableThe table name
string$ColumnThe name of the column
+
+
+
Returns
boolean
+
Exceptions
+ + +
+
+
+ +

Definition at line 220 of file Migrations.php.

@@ -666,7 +720,7 @@

    - +
diff --git a/docs/classcrisp_1_1core_1_1_migrations.js b/docs/classcrisp_1_1core_1_1_migrations.js index 0e9f9d74..8455fa23 100644 --- a/docs/classcrisp_1_1core_1_1_migrations.js +++ b/docs/classcrisp_1_1core_1_1_migrations.js @@ -6,6 +6,7 @@ var classcrisp_1_1core_1_1_migrations = [ "begin", "classcrisp_1_1core_1_1_migrations.html#a3a9793666e688407121d76d3a7e4db5d", null ], [ "create", "classcrisp_1_1core_1_1_migrations.html#ad1aa7ace9432930c3be64c05f3a0fa67", null ], [ "createTable", "classcrisp_1_1core_1_1_migrations.html#a770a5ffc1c2d35286bb2afbb17058724", null ], + [ "dropColumn", "classcrisp_1_1core_1_1_migrations.html#a4d830d14a586e54da90d752e2fda8d0c", null ], [ "end", "classcrisp_1_1core_1_1_migrations.html#a817082ace0e2589d27b22890290aa4a9", null ], [ "isMigrated", "classcrisp_1_1core_1_1_migrations.html#a7d4938c0383aad97545a1f62a8299b4b", null ], [ "migrate", "classcrisp_1_1core_1_1_migrations.html#a40ee067b290f06bd50cf41affdeb60dd", null ], diff --git a/docs/classcrisp_1_1core_1_1_my_s_q_l.html b/docs/classcrisp_1_1core_1_1_my_s_q_l.html index 050bdf0f..8d2ba677 100644 --- a/docs/classcrisp_1_1core_1_1_my_s_q_l.html +++ b/docs/classcrisp_1_1core_1_1_my_s_q_l.html @@ -151,7 +151,7 @@

    - +
diff --git a/docs/classcrisp_1_1core_1_1_plugin.html b/docs/classcrisp_1_1core_1_1_plugin.html index 6ccc9da4..4ef07aa5 100644 --- a/docs/classcrisp_1_1core_1_1_plugin.html +++ b/docs/classcrisp_1_1core_1_1_plugin.html @@ -654,7 +654,7 @@

    - +
diff --git a/docs/classcrisp_1_1core_1_1_plugin_a_p_i.html b/docs/classcrisp_1_1core_1_1_plugin_a_p_i.html index bc1d0909..9c952108 100644 --- a/docs/classcrisp_1_1core_1_1_plugin_a_p_i.html +++ b/docs/classcrisp_1_1core_1_1_plugin_a_p_i.html @@ -334,7 +334,7 @@

    - +
diff --git a/docs/classcrisp_1_1core_1_1_plugins.html b/docs/classcrisp_1_1core_1_1_plugins.html index 550c9414..d79b6479 100644 --- a/docs/classcrisp_1_1core_1_1_plugins.html +++ b/docs/classcrisp_1_1core_1_1_plugins.html @@ -1283,7 +1283,7 @@

    - +
diff --git a/docs/classcrisp_1_1core_1_1_postgres.html b/docs/classcrisp_1_1core_1_1_postgres.html index e1a48082..a2de4b7e 100644 --- a/docs/classcrisp_1_1core_1_1_postgres.html +++ b/docs/classcrisp_1_1core_1_1_postgres.html @@ -151,7 +151,7 @@

    - +
diff --git a/docs/classcrisp_1_1core_1_1_redis.html b/docs/classcrisp_1_1core_1_1_redis.html index 7d2a0d49..3f739b70 100644 --- a/docs/classcrisp_1_1core_1_1_redis.html +++ b/docs/classcrisp_1_1core_1_1_redis.html @@ -151,7 +151,7 @@

    - +
diff --git a/docs/classcrisp_1_1core_1_1_theme.html b/docs/classcrisp_1_1core_1_1_theme.html index 2f38f140..15832710 100644 --- a/docs/classcrisp_1_1core_1_1_theme.html +++ b/docs/classcrisp_1_1core_1_1_theme.html @@ -281,7 +281,7 @@

    - +
diff --git a/docs/classcrisp_1_1core_1_1_themes.html b/docs/classcrisp_1_1core_1_1_themes.html index f1a53ef3..1f1c055d 100644 --- a/docs/classcrisp_1_1core_1_1_themes.html +++ b/docs/classcrisp_1_1core_1_1_themes.html @@ -683,7 +683,7 @@

    - +
diff --git a/docs/classcrisp_1_1exceptions_1_1_invalid_language_exception.html b/docs/classcrisp_1_1exceptions_1_1_invalid_language_exception.html index 64372973..90f7380c 100644 --- a/docs/classcrisp_1_1exceptions_1_1_invalid_language_exception.html +++ b/docs/classcrisp_1_1exceptions_1_1_invalid_language_exception.html @@ -173,7 +173,7 @@

diff --git a/docs/classes.html b/docs/classes.html index 5913cba0..a6a0d719 100644 --- a/docs/classes.html +++ b/docs/classes.html @@ -151,7 +151,7 @@ diff --git a/docs/core_2_config_8php.html b/docs/core_2_config_8php.html index b1c3c03a..974223b4 100644 --- a/docs/core_2_config_8php.html +++ b/docs/core_2_config_8php.html @@ -108,7 +108,7 @@ diff --git a/docs/core_2_config_8php_source.html b/docs/core_2_config_8php_source.html index 323d378e..e896e3c5 100644 --- a/docs/core_2_config_8php_source.html +++ b/docs/core_2_config_8php_source.html @@ -121,7 +121,7 @@ diff --git a/docs/deprecated.html b/docs/deprecated.html index 8b6844f9..8a9d3b87 100644 --- a/docs/deprecated.html +++ b/docs/deprecated.html @@ -116,7 +116,7 @@ diff --git a/docs/dev_8dox.html b/docs/dev_8dox.html index a001f338..7d5e1384 100644 --- a/docs/dev_8dox.html +++ b/docs/dev_8dox.html @@ -92,7 +92,7 @@ diff --git a/docs/devplugin.html b/docs/devplugin.html index da330aec..fae2e0df 100644 --- a/docs/devplugin.html +++ b/docs/devplugin.html @@ -94,7 +94,7 @@ diff --git a/docs/dir_27d08630b666059b52835fa8f5d5ebf1.html b/docs/dir_27d08630b666059b52835fa8f5d5ebf1.html index 1c9fc3f7..e6402619 100644 --- a/docs/dir_27d08630b666059b52835fa8f5d5ebf1.html +++ b/docs/dir_27d08630b666059b52835fa8f5d5ebf1.html @@ -98,7 +98,7 @@ diff --git a/docs/dir_3236ec5562dee268949f3828d12e1420.html b/docs/dir_3236ec5562dee268949f3828d12e1420.html index 24d8f6c0..d2fa998b 100644 --- a/docs/dir_3236ec5562dee268949f3828d12e1420.html +++ b/docs/dir_3236ec5562dee268949f3828d12e1420.html @@ -115,7 +115,7 @@ diff --git a/docs/dir_38c8d24aef3972a7f87b834274e76e31.html b/docs/dir_38c8d24aef3972a7f87b834274e76e31.html index 8da8d96e..ffceffb0 100644 --- a/docs/dir_38c8d24aef3972a7f87b834274e76e31.html +++ b/docs/dir_38c8d24aef3972a7f87b834274e76e31.html @@ -92,7 +92,7 @@ diff --git a/docs/dir_4213a50b2e9a213fb8109c2c80beeab7.html b/docs/dir_4213a50b2e9a213fb8109c2c80beeab7.html index 54e5058c..48f1d1f0 100644 --- a/docs/dir_4213a50b2e9a213fb8109c2c80beeab7.html +++ b/docs/dir_4213a50b2e9a213fb8109c2c80beeab7.html @@ -100,7 +100,7 @@ diff --git a/docs/dir_5164c0cc3d1a25a035982bb13bdb098f.html b/docs/dir_5164c0cc3d1a25a035982bb13bdb098f.html index 5b6f2c1e..9d987125 100644 --- a/docs/dir_5164c0cc3d1a25a035982bb13bdb098f.html +++ b/docs/dir_5164c0cc3d1a25a035982bb13bdb098f.html @@ -98,7 +98,7 @@ diff --git a/docs/dir_6affd3f97ad00b91b798d059ae37bea2.html b/docs/dir_6affd3f97ad00b91b798d059ae37bea2.html index 982ea2e4..b7560bfa 100644 --- a/docs/dir_6affd3f97ad00b91b798d059ae37bea2.html +++ b/docs/dir_6affd3f97ad00b91b798d059ae37bea2.html @@ -98,7 +98,7 @@ diff --git a/docs/dir_a3d8be135d82969b2ee3458600f4e517.html b/docs/dir_a3d8be135d82969b2ee3458600f4e517.html index f8997c77..b271c201 100644 --- a/docs/dir_a3d8be135d82969b2ee3458600f4e517.html +++ b/docs/dir_a3d8be135d82969b2ee3458600f4e517.html @@ -107,7 +107,7 @@ diff --git a/docs/dir_b90053ece3e3aae2db004f989e8a8c69.html b/docs/dir_b90053ece3e3aae2db004f989e8a8c69.html index e08729b1..d13c64be 100644 --- a/docs/dir_b90053ece3e3aae2db004f989e8a8c69.html +++ b/docs/dir_b90053ece3e3aae2db004f989e8a8c69.html @@ -120,7 +120,7 @@ diff --git a/docs/files.html b/docs/files.html index a43696aa..aab2dcf8 100644 --- a/docs/files.html +++ b/docs/files.html @@ -126,7 +126,7 @@ diff --git a/docs/functions.html b/docs/functions.html index ddeb6da7..0e51969b 100644 --- a/docs/functions.html +++ b/docs/functions.html @@ -136,7 +136,7 @@

- $ -

    diff --git a/docs/functions__.html b/docs/functions__.html index fa9db8a0..34eec94e 100644 --- a/docs/functions__.html +++ b/docs/functions__.html @@ -110,7 +110,7 @@

    - _ -

      diff --git a/docs/functions_a.html b/docs/functions_a.html index 5f86599a..d1a644ab 100644 --- a/docs/functions_a.html +++ b/docs/functions_a.html @@ -103,7 +103,7 @@

      - a -

        diff --git a/docs/functions_b.html b/docs/functions_b.html index 2af5899b..ebe0694c 100644 --- a/docs/functions_b.html +++ b/docs/functions_b.html @@ -94,7 +94,7 @@

        - b -

          diff --git a/docs/functions_c.html b/docs/functions_c.html index 74ec1a90..39cd9b95 100644 --- a/docs/functions_c.html +++ b/docs/functions_c.html @@ -118,7 +118,7 @@

          - c -

            diff --git a/docs/functions_d.html b/docs/functions_d.html index 56a4f390..405a3ffd 100644 --- a/docs/functions_d.html +++ b/docs/functions_d.html @@ -134,13 +134,16 @@

            - d -

            diff --git a/docs/functions_e.html b/docs/functions_e.html index a4dd6fa3..60cbc30c 100644 --- a/docs/functions_e.html +++ b/docs/functions_e.html @@ -112,7 +112,7 @@

            - e -

              diff --git a/docs/functions_f.html b/docs/functions_f.html index 2c3113a7..637e1b6b 100644 --- a/docs/functions_f.html +++ b/docs/functions_f.html @@ -115,7 +115,7 @@

              - f -

                diff --git a/docs/functions_func.html b/docs/functions_func.html index 0c04a8a0..9f48047a 100644 --- a/docs/functions_func.html +++ b/docs/functions_func.html @@ -187,6 +187,9 @@

                - d -

                @@ -632,7 +635,7 @@

                - u -

                  diff --git a/docs/functions_g.html b/docs/functions_g.html index 9aaab4b2..36450993 100644 --- a/docs/functions_g.html +++ b/docs/functions_g.html @@ -221,7 +221,7 @@

                  - g -

                    diff --git a/docs/functions_i.html b/docs/functions_i.html index 63c15042..9dc8f292 100644 --- a/docs/functions_i.html +++ b/docs/functions_i.html @@ -139,7 +139,7 @@

                    - i -

                      diff --git a/docs/functions_l.html b/docs/functions_l.html index a7742402..ee1027cc 100644 --- a/docs/functions_l.html +++ b/docs/functions_l.html @@ -124,7 +124,7 @@

                      - l -

                        diff --git a/docs/functions_m.html b/docs/functions_m.html index 7400a33b..4faee1ee 100644 --- a/docs/functions_m.html +++ b/docs/functions_m.html @@ -106,7 +106,7 @@

                        - m -

                          diff --git a/docs/functions_n.html b/docs/functions_n.html index 2ca27d03..a51c3385 100644 --- a/docs/functions_n.html +++ b/docs/functions_n.html @@ -94,7 +94,7 @@

                          - n -

                            diff --git a/docs/functions_p.html b/docs/functions_p.html index 8a8bea2a..bc6cf009 100644 --- a/docs/functions_p.html +++ b/docs/functions_p.html @@ -103,7 +103,7 @@

                            - p -

                              diff --git a/docs/functions_r.html b/docs/functions_r.html index 8c592a45..6665f20f 100644 --- a/docs/functions_r.html +++ b/docs/functions_r.html @@ -123,7 +123,7 @@

                              - r -

                                diff --git a/docs/functions_s.html b/docs/functions_s.html index ee9afe91..1b0dd1f6 100644 --- a/docs/functions_s.html +++ b/docs/functions_s.html @@ -136,7 +136,7 @@

                                - s -

                                  diff --git a/docs/functions_t.html b/docs/functions_t.html index e661e903..65097a57 100644 --- a/docs/functions_t.html +++ b/docs/functions_t.html @@ -100,7 +100,7 @@

                                  - t -

                                    diff --git a/docs/functions_u.html b/docs/functions_u.html index fd1c4880..1aeab348 100644 --- a/docs/functions_u.html +++ b/docs/functions_u.html @@ -122,7 +122,7 @@

                                    - u -

                                      diff --git a/docs/functions_vars.html b/docs/functions_vars.html index a9b93b84..f4257a6f 100644 --- a/docs/functions_vars.html +++ b/docs/functions_vars.html @@ -180,7 +180,7 @@

                                      - u -

                                        diff --git a/docs/hierarchy.html b/docs/hierarchy.html index 170bac64..622cbbab 100644 --- a/docs/hierarchy.html +++ b/docs/hierarchy.html @@ -118,7 +118,7 @@ diff --git a/docs/index.html b/docs/index.html index 522fc045..8557ee8e 100644 --- a/docs/index.html +++ b/docs/index.html @@ -91,7 +91,7 @@ diff --git a/docs/latex/classcrisp_1_1core_1_1_migrations.tex b/docs/latex/classcrisp_1_1core_1_1_migrations.tex index 3d28ec1e..226f13c3 100644 --- a/docs/latex/classcrisp_1_1core_1_1_migrations.tex +++ b/docs/latex/classcrisp_1_1core_1_1_migrations.tex @@ -41,6 +41,8 @@ \item \mbox{\hyperlink{classcrisp_1_1core_1_1_migrations_a65795769728b3380d3a5979d0edf458b}{add\+Index}} (string \$Table, array \$Column, \$Type=self\+::\+D\+B\+\_\+\+P\+R\+I\+M\+A\+R\+Y\+K\+EY, string \$Index\+Name=null) \item +\mbox{\hyperlink{classcrisp_1_1core_1_1_migrations_a4d830d14a586e54da90d752e2fda8d0c}{drop\+Column}} (string \$Table, string \$Column) +\item \mbox{\hyperlink{classcrisp_1_1core_1_1_migrations_aaf75444fcad516385bd1c9106fa03385}{add\+Column}} (string \$Table, array \$Column) \item \mbox{\hyperlink{classcrisp_1_1core_1_1_migrations_a770a5ffc1c2d35286bb2afbb17058724}{create\+Table}} (string \$Table,... \$Columns) @@ -99,7 +101,7 @@ \end{DoxyExceptions} -Definition at line 220 of file Migrations.\+php. +Definition at line 242 of file Migrations.\+php. \mbox{\Hypertarget{classcrisp_1_1core_1_1_migrations_a65795769728b3380d3a5979d0edf458b}\label{classcrisp_1_1core_1_1_migrations_a65795769728b3380d3a5979d0edf458b}} \index{Migrations@{Migrations}!addIndex@{addIndex}} @@ -196,7 +198,32 @@ \end{DoxyExceptions} -Definition at line 242 of file Migrations.\+php. +Definition at line 264 of file Migrations.\+php. + +\mbox{\Hypertarget{classcrisp_1_1core_1_1_migrations_a4d830d14a586e54da90d752e2fda8d0c}\label{classcrisp_1_1core_1_1_migrations_a4d830d14a586e54da90d752e2fda8d0c}} +\index{Migrations@{Migrations}!dropColumn@{dropColumn}} +\index{dropColumn@{dropColumn}!Migrations@{Migrations}} +\doxysubsubsection{\texorpdfstring{dropColumn()}{dropColumn()}} +{\footnotesize\ttfamily drop\+Column (\begin{DoxyParamCaption}\item[{string}]{\$\+Table, }\item[{string}]{\$\+Column }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [protected]}} + +Remove a column from a table +\begin{DoxyParams}[1]{Parameters} +string & {\em \$\+Table} & The table name \\ +\hline +string & {\em \$\+Column} & The name of the column \\ +\hline +\end{DoxyParams} +\begin{DoxyReturn}{Returns} +boolean +\end{DoxyReturn} + +\begin{DoxyExceptions}{Exceptions} +{\em } & \\ +\hline +\end{DoxyExceptions} + + +Definition at line 220 of file Migrations.\+php. \mbox{\Hypertarget{classcrisp_1_1core_1_1_migrations_a817082ace0e2589d27b22890290aa4a9}\label{classcrisp_1_1core_1_1_migrations_a817082ace0e2589d27b22890290aa4a9}} \index{Migrations@{Migrations}!end@{end}} diff --git a/docs/man/man3/crisp_core_Migrations.3 b/docs/man/man3/crisp_core_Migrations.3 index 63d5acd4..f1947ca1 100644 --- a/docs/man/man3/crisp_core_Migrations.3 +++ b/docs/man/man3/crisp_core_Migrations.3 @@ -66,6 +66,9 @@ Migrations .RI "\fBaddIndex\fP (string $Table, array $Column, $Type=self::DB_PRIMARYKEY, string $IndexName=null)" .br .ti -1c +.RI "\fBdropColumn\fP (string $Table, string $Column)" +.br +.ti -1c .RI "\fBaddColumn\fP (string $Table, array $Column)" .br .ti -1c @@ -120,7 +123,7 @@ boolean .PP .PP -Definition at line 220 of file Migrations\&.php\&. +Definition at line 242 of file Migrations\&.php\&. .SS "addIndex (string $Table, array $Column, $Type = \fCself::DB_PRIMARYKEY\fP, string $IndexName = \fCnull\fP)\fC [protected]\fP" Create a new index for a table .PP @@ -215,7 +218,29 @@ boolean .PP .PP -Definition at line 242 of file Migrations\&.php\&. +Definition at line 264 of file Migrations\&.php\&. +.SS "dropColumn (string $Table, string $Column)\fC [protected]\fP" +Remove a column from a table +.PP +\fBParameters\fP +.RS 4 +\fI$Table\fP The table name +.br +\fI$Column\fP The name of the column +.RE +.PP +\fBReturns\fP +.RS 4 +boolean +.RE +.PP +\fBExceptions\fP +.RS 4 +\fI\fP .RE +.PP + +.PP +Definition at line 220 of file Migrations\&.php\&. .SS "end ()\fC [protected]\fP" End/commit a \fBMySQL\fP Transaction .PP diff --git a/docs/namespacecrisp.html b/docs/namespacecrisp.html index 50dffa67..741c4cdf 100644 --- a/docs/namespacecrisp.html +++ b/docs/namespacecrisp.html @@ -110,7 +110,7 @@ diff --git a/docs/namespacecrisp_1_1api.html b/docs/namespacecrisp_1_1api.html index 45990206..f5ddddd4 100644 --- a/docs/namespacecrisp_1_1api.html +++ b/docs/namespacecrisp_1_1api.html @@ -118,7 +118,7 @@ diff --git a/docs/namespacecrisp_1_1api_1_1lists.html b/docs/namespacecrisp_1_1api_1_1lists.html index c9fae67b..b32e92cf 100644 --- a/docs/namespacecrisp_1_1api_1_1lists.html +++ b/docs/namespacecrisp_1_1api_1_1lists.html @@ -102,7 +102,7 @@ diff --git a/docs/namespacecrisp_1_1core.html b/docs/namespacecrisp_1_1core.html index 3932fdf1..8e61df7f 100644 --- a/docs/namespacecrisp_1_1core.html +++ b/docs/namespacecrisp_1_1core.html @@ -120,7 +120,7 @@ diff --git a/docs/namespacecrisp_1_1exceptions.html b/docs/namespacecrisp_1_1exceptions.html index ff8749ad..45ef1424 100644 --- a/docs/namespacecrisp_1_1exceptions.html +++ b/docs/namespacecrisp_1_1exceptions.html @@ -100,7 +100,7 @@ diff --git a/docs/namespaces.html b/docs/namespaces.html index 01d2dc77..ca2af3ef 100644 --- a/docs/namespaces.html +++ b/docs/namespaces.html @@ -100,7 +100,7 @@ diff --git a/docs/navtreeindex0.js b/docs/navtreeindex0.js index c9b1520d..4b018ebf 100644 --- a/docs/navtreeindex0.js +++ b/docs/navtreeindex0.js @@ -87,24 +87,25 @@ var NAVTREEINDEX0 = "classcrisp_1_1core_1_1_crypto.html":[3,0,0,1,1], "classcrisp_1_1core_1_1_migrations.html":[3,0,0,1,2], "classcrisp_1_1core_1_1_migrations.html#a095c5d389db211932136b53f25f39685":[3,0,0,1,2,0], -"classcrisp_1_1core_1_1_migrations.html#a13e00c30f133e532a23d23729ff66dbc":[3,0,0,1,2,10], -"classcrisp_1_1core_1_1_migrations.html#a31cc7487b8db3a13a2a411a78005c595":[3,0,0,1,2,12], +"classcrisp_1_1core_1_1_migrations.html#a13e00c30f133e532a23d23729ff66dbc":[3,0,0,1,2,11], +"classcrisp_1_1core_1_1_migrations.html#a31cc7487b8db3a13a2a411a78005c595":[3,0,0,1,2,13], "classcrisp_1_1core_1_1_migrations.html#a3a9793666e688407121d76d3a7e4db5d":[3,0,0,1,2,3], -"classcrisp_1_1core_1_1_migrations.html#a40ee067b290f06bd50cf41affdeb60dd":[3,0,0,1,2,8], -"classcrisp_1_1core_1_1_migrations.html#a5571c0e434176ccbca829cb8a263a485":[3,0,0,1,2,11], +"classcrisp_1_1core_1_1_migrations.html#a40ee067b290f06bd50cf41affdeb60dd":[3,0,0,1,2,9], +"classcrisp_1_1core_1_1_migrations.html#a4d830d14a586e54da90d752e2fda8d0c":[3,0,0,1,2,6], +"classcrisp_1_1core_1_1_migrations.html#a5571c0e434176ccbca829cb8a263a485":[3,0,0,1,2,12], "classcrisp_1_1core_1_1_migrations.html#a65795769728b3380d3a5979d0edf458b":[3,0,0,1,2,2], "classcrisp_1_1core_1_1_migrations.html#a770a5ffc1c2d35286bb2afbb17058724":[3,0,0,1,2,5], -"classcrisp_1_1core_1_1_migrations.html#a7d4938c0383aad97545a1f62a8299b4b":[3,0,0,1,2,7], -"classcrisp_1_1core_1_1_migrations.html#a817082ace0e2589d27b22890290aa4a9":[3,0,0,1,2,6], -"classcrisp_1_1core_1_1_migrations.html#a849312ca5cf92a8bb2b01a805b16d8b0":[3,0,0,1,2,17], -"classcrisp_1_1core_1_1_migrations.html#a982f231793e2b157ed3a92a1948f18cf":[3,0,0,1,2,14], -"classcrisp_1_1core_1_1_migrations.html#aa1e26f723dce28fe8d7419a31a7c7cf1":[3,0,0,1,2,16], +"classcrisp_1_1core_1_1_migrations.html#a7d4938c0383aad97545a1f62a8299b4b":[3,0,0,1,2,8], +"classcrisp_1_1core_1_1_migrations.html#a817082ace0e2589d27b22890290aa4a9":[3,0,0,1,2,7], +"classcrisp_1_1core_1_1_migrations.html#a849312ca5cf92a8bb2b01a805b16d8b0":[3,0,0,1,2,18], +"classcrisp_1_1core_1_1_migrations.html#a982f231793e2b157ed3a92a1948f18cf":[3,0,0,1,2,15], +"classcrisp_1_1core_1_1_migrations.html#aa1e26f723dce28fe8d7419a31a7c7cf1":[3,0,0,1,2,17], "classcrisp_1_1core_1_1_migrations.html#aaf75444fcad516385bd1c9106fa03385":[3,0,0,1,2,1], -"classcrisp_1_1core_1_1_migrations.html#ac32f99182de182f058565b3d7d3a5b22":[3,0,0,1,2,15], -"classcrisp_1_1core_1_1_migrations.html#acbee2aa4c29a42ddc49f0def501f987f":[3,0,0,1,2,18], +"classcrisp_1_1core_1_1_migrations.html#ac32f99182de182f058565b3d7d3a5b22":[3,0,0,1,2,16], +"classcrisp_1_1core_1_1_migrations.html#acbee2aa4c29a42ddc49f0def501f987f":[3,0,0,1,2,19], "classcrisp_1_1core_1_1_migrations.html#ad1aa7ace9432930c3be64c05f3a0fa67":[3,0,0,1,2,4], -"classcrisp_1_1core_1_1_migrations.html#afa549adf79e3f8c09fe8f903dd5fbfa7":[3,0,0,1,2,9], -"classcrisp_1_1core_1_1_migrations.html#afb1c31820e997466c52bf2e9c7b4c5e0":[3,0,0,1,2,13], +"classcrisp_1_1core_1_1_migrations.html#afa549adf79e3f8c09fe8f903dd5fbfa7":[3,0,0,1,2,10], +"classcrisp_1_1core_1_1_migrations.html#afb1c31820e997466c52bf2e9c7b4c5e0":[3,0,0,1,2,14], "classcrisp_1_1core_1_1_my_s_q_l.html":[3,0,0,1,3], "classcrisp_1_1core_1_1_my_s_q_l.html#a095c5d389db211932136b53f25f39685":[3,0,0,1,3,0], "classcrisp_1_1core_1_1_my_s_q_l.html#a7ef42b56201d7af4fc2d1c38ab6c7f27":[3,0,0,1,3,1], @@ -165,8 +166,8 @@ var NAVTREEINDEX0 = "dir_a3d8be135d82969b2ee3458600f4e517.html":[4,0,0,0,0], "dir_b90053ece3e3aae2db004f989e8a8c69.html":[4,0,0,0,0,1], "files.html":[4,0], -"functions.html":[3,3,0,0], "functions.html":[3,3,0], +"functions.html":[3,3,0,0], "functions__.html":[3,3,0,1], "functions_a.html":[3,3,0,2], "functions_b.html":[3,3,0,3], @@ -188,16 +189,16 @@ var NAVTREEINDEX0 = "functions_vars.html":[3,3,2], "hierarchy.html":[3,2], "index.html":[], -"namespacecrisp.html":[2,0,0], "namespacecrisp.html":[3,0,0], +"namespacecrisp.html":[2,0,0], "namespacecrisp_1_1api.html":[2,0,0,0], "namespacecrisp_1_1api.html":[3,0,0,0], -"namespacecrisp_1_1api_1_1lists.html":[2,0,0,0,0], "namespacecrisp_1_1api_1_1lists.html":[3,0,0,0,0], -"namespacecrisp_1_1core.html":[3,0,0,1], +"namespacecrisp_1_1api_1_1lists.html":[2,0,0,0,0], "namespacecrisp_1_1core.html":[2,0,0,1], -"namespacecrisp_1_1exceptions.html":[3,0,0,2], +"namespacecrisp_1_1core.html":[3,0,0,1], "namespacecrisp_1_1exceptions.html":[2,0,0,2], +"namespacecrisp_1_1exceptions.html":[3,0,0,2], "namespaces.html":[2,0], "pages.html":[] }; diff --git a/docs/pages.html b/docs/pages.html index ade4e34d..daaa49b2 100644 --- a/docs/pages.html +++ b/docs/pages.html @@ -97,7 +97,7 @@ diff --git a/docs/search/all_10.js b/docs/search/all_10.js index 74973447..53eea84e 100644 --- a/docs/search/all_10.js +++ b/docs/search/all_10.js @@ -1,18 +1,18 @@ var searchData= [ - ['searchservicebynamepg_184',['searchServiceByNamePG',['../classcrisp_1_1api_1_1_phoenix.html#a86b6909fcd8110ceef103f22434fe8ab',1,'crisp::api::Phoenix']]], - ['serviceexists_185',['serviceExists',['../classcrisp_1_1api_1_1_phoenix.html#a9d678dde5eef2774652ae08c11a87f41',1,'crisp::api::Phoenix']]], - ['serviceexistsbyname_186',['serviceExistsByName',['../classcrisp_1_1api_1_1_phoenix.html#aefc884b0de712c30078aa06ba98f1232',1,'crisp::api::Phoenix']]], - ['serviceexistsbynamepg_187',['serviceExistsByNamePG',['../classcrisp_1_1api_1_1_phoenix.html#a917936f7ed3a9c60005cee21f9206fc4',1,'crisp::api::Phoenix']]], - ['serviceexistsbyslugpg_188',['serviceExistsBySlugPG',['../classcrisp_1_1api_1_1_phoenix.html#abafe513a641435eb0c9f59c99a317fb1',1,'crisp::api::Phoenix']]], - ['serviceexistspg_189',['serviceExistsPG',['../classcrisp_1_1api_1_1_phoenix.html#a6f35829d63efe17552f37ab86d1007bb',1,'crisp::api::Phoenix']]], - ['set_190',['set',['../classcrisp_1_1api_1_1_config.html#a3b45b8d8f3ecd8311cb318410d74b4bd',1,'crisp::api::Config']]], - ['setcode_191',['setCode',['../classcrisp_1_1api_1_1_language.html#a95444594a3c8e26bc5c91d8b1747b2cd',1,'crisp::api::Language']]], - ['setconfig_192',['setConfig',['../classcrisp_1_1core_1_1_plugin.html#a27ce1b67a2fbf090699ef4d3ce6663aa',1,'crisp::core::Plugin']]], - ['setflag_193',['setFlag',['../classcrisp_1_1api_1_1_language.html#af5b5bcbcf3f41b30df5f84c68994c9fc',1,'crisp::api::Language']]], - ['setlocale_194',['setLocale',['../classcrisp_1_1api_1_1_helper.html#a828aaa44c7f3e7b764c9a774d13939b9',1,'crisp::api::Helper']]], - ['setlog_195',['setLog',['../classcrisp_1_1api_1_1lists_1_1_cron.html#afdc8722707a95bffd4979134a510a1e9',1,'crisp::api::lists::Cron']]], - ['setname_196',['setName',['../classcrisp_1_1api_1_1_language.html#a46b5aa9e8b383ec6b6a667cead4c9010',1,'crisp::api::Language']]], - ['setnativename_197',['setNativeName',['../classcrisp_1_1api_1_1_language.html#a044c5d155f5d06187e1985383b764632',1,'crisp::api::Language']]], - ['startswith_198',['startsWith',['../classcrisp_1_1api_1_1_helper.html#a155e158a30306cdc59190c6cff1ccfb8',1,'crisp::api::Helper']]] + ['searchservicebynamepg_185',['searchServiceByNamePG',['../classcrisp_1_1api_1_1_phoenix.html#a86b6909fcd8110ceef103f22434fe8ab',1,'crisp::api::Phoenix']]], + ['serviceexists_186',['serviceExists',['../classcrisp_1_1api_1_1_phoenix.html#a9d678dde5eef2774652ae08c11a87f41',1,'crisp::api::Phoenix']]], + ['serviceexistsbyname_187',['serviceExistsByName',['../classcrisp_1_1api_1_1_phoenix.html#aefc884b0de712c30078aa06ba98f1232',1,'crisp::api::Phoenix']]], + ['serviceexistsbynamepg_188',['serviceExistsByNamePG',['../classcrisp_1_1api_1_1_phoenix.html#a917936f7ed3a9c60005cee21f9206fc4',1,'crisp::api::Phoenix']]], + ['serviceexistsbyslugpg_189',['serviceExistsBySlugPG',['../classcrisp_1_1api_1_1_phoenix.html#abafe513a641435eb0c9f59c99a317fb1',1,'crisp::api::Phoenix']]], + ['serviceexistspg_190',['serviceExistsPG',['../classcrisp_1_1api_1_1_phoenix.html#a6f35829d63efe17552f37ab86d1007bb',1,'crisp::api::Phoenix']]], + ['set_191',['set',['../classcrisp_1_1api_1_1_config.html#a3b45b8d8f3ecd8311cb318410d74b4bd',1,'crisp::api::Config']]], + ['setcode_192',['setCode',['../classcrisp_1_1api_1_1_language.html#a95444594a3c8e26bc5c91d8b1747b2cd',1,'crisp::api::Language']]], + ['setconfig_193',['setConfig',['../classcrisp_1_1core_1_1_plugin.html#a27ce1b67a2fbf090699ef4d3ce6663aa',1,'crisp::core::Plugin']]], + ['setflag_194',['setFlag',['../classcrisp_1_1api_1_1_language.html#af5b5bcbcf3f41b30df5f84c68994c9fc',1,'crisp::api::Language']]], + ['setlocale_195',['setLocale',['../classcrisp_1_1api_1_1_helper.html#a828aaa44c7f3e7b764c9a774d13939b9',1,'crisp::api::Helper']]], + ['setlog_196',['setLog',['../classcrisp_1_1api_1_1lists_1_1_cron.html#afdc8722707a95bffd4979134a510a1e9',1,'crisp::api::lists::Cron']]], + ['setname_197',['setName',['../classcrisp_1_1api_1_1_language.html#a46b5aa9e8b383ec6b6a667cead4c9010',1,'crisp::api::Language']]], + ['setnativename_198',['setNativeName',['../classcrisp_1_1api_1_1_language.html#a044c5d155f5d06187e1985383b764632',1,'crisp::api::Language']]], + ['startswith_199',['startsWith',['../classcrisp_1_1api_1_1_helper.html#a155e158a30306cdc59190c6cff1ccfb8',1,'crisp::api::Helper']]] ]; diff --git a/docs/search/all_11.js b/docs/search/all_11.js index e2652320..16dd3d88 100644 --- a/docs/search/all_11.js +++ b/docs/search/all_11.js @@ -1,12 +1,12 @@ var searchData= [ - ['templateexists_199',['templateExists',['../classcrisp_1_1api_1_1_helper.html#a4d67f0d47d7e28e5f2b344bb06db744a',1,'crisp::api::Helper']]], - ['testversion_200',['testVersion',['../classcrisp_1_1core_1_1_plugins.html#a36eefd37ba778833fa1dd82b5c9fb4b6',1,'crisp::core::Plugins']]], - ['theme_201',['Theme',['../classcrisp_1_1core_1_1_theme.html',1,'crisp::core']]], - ['theme_2ephp_202',['Theme.php',['../_theme_8php.html',1,'']]], - ['themes_203',['Themes',['../classcrisp_1_1core_1_1_themes.html',1,'crisp::core']]], - ['themes_2ephp_204',['Themes.php',['../_themes_8php.html',1,'']]], - ['translation_205',['Translation',['../classcrisp_1_1api_1_1_translation.html',1,'crisp::api']]], - ['translation_2ephp_206',['Translation.php',['../_translation_8php.html',1,'']]], - ['truncatetext_207',['truncateText',['../classcrisp_1_1api_1_1_helper.html#a11e88bd83a076ce47a26c25cb6fc8dcf',1,'crisp::api::Helper']]] + ['templateexists_200',['templateExists',['../classcrisp_1_1api_1_1_helper.html#a4d67f0d47d7e28e5f2b344bb06db744a',1,'crisp::api::Helper']]], + ['testversion_201',['testVersion',['../classcrisp_1_1core_1_1_plugins.html#a36eefd37ba778833fa1dd82b5c9fb4b6',1,'crisp::core::Plugins']]], + ['theme_202',['Theme',['../classcrisp_1_1core_1_1_theme.html',1,'crisp::core']]], + ['theme_2ephp_203',['Theme.php',['../_theme_8php.html',1,'']]], + ['themes_204',['Themes',['../classcrisp_1_1core_1_1_themes.html',1,'crisp::core']]], + ['themes_2ephp_205',['Themes.php',['../_themes_8php.html',1,'']]], + ['translation_206',['Translation',['../classcrisp_1_1api_1_1_translation.html',1,'crisp::api']]], + ['translation_2ephp_207',['Translation.php',['../_translation_8php.html',1,'']]], + ['truncatetext_208',['truncateText',['../classcrisp_1_1api_1_1_helper.html#a11e88bd83a076ce47a26c25cb6fc8dcf',1,'crisp::api::Helper']]] ]; diff --git a/docs/search/all_12.js b/docs/search/all_12.js index 12208425..611c19c8 100644 --- a/docs/search/all_12.js +++ b/docs/search/all_12.js @@ -1,14 +1,14 @@ var searchData= [ - ['uninstall_208',['uninstall',['../classcrisp_1_1core_1_1_plugin.html#a9db6a246faa6b948911078c4be4445c8',1,'crisp\core\Plugin\uninstall()'],['../classcrisp_1_1core_1_1_plugins.html#a613477d731542ada2effda2624b22baa',1,'crisp\core\Plugins\uninstall()'],['../classcrisp_1_1core_1_1_themes.html#adcf348d20bb3820c303e286eb7897192',1,'crisp\core\Themes\uninstall()']]], - ['uninstallcrons_209',['uninstallCrons',['../classcrisp_1_1core_1_1_plugins.html#a1aed9c205b0d0335408a6aff9199e524',1,'crisp::core::Plugins']]], - ['uninstallkvstorage_210',['uninstallKVStorage',['../classcrisp_1_1core_1_1_plugins.html#ae818c2a7a030c57d7c128b9513174236',1,'crisp\core\Plugins\uninstallKVStorage()'],['../classcrisp_1_1core_1_1_themes.html#a159bed4ed508b144860af6dc60fd4d29',1,'crisp\core\Themes\uninstallKVStorage()']]], - ['uninstalltranslations_211',['uninstallTranslations',['../classcrisp_1_1core_1_1_plugins.html#a5acab9a66f2cdb695f4c73de97c3687e',1,'crisp\core\Plugins\uninstallTranslations()'],['../classcrisp_1_1core_1_1_themes.html#a13d74dc19dc45444508e936768a5ec21',1,'crisp\core\Themes\uninstallTranslations()']]], - ['universe_212',['Universe',['../classcrisp_1_1_universe.html',1,'crisp']]], - ['universe_2ephp_213',['Universe.php',['../_universe_8php.html',1,'']]], - ['universe_5fbeta_214',['UNIVERSE_BETA',['../classcrisp_1_1_universe.html#a9a02599d489d82a7da08abeba279931a',1,'crisp::Universe']]], - ['universe_5fdev_215',['UNIVERSE_DEV',['../classcrisp_1_1_universe.html#ab137dbf19f0e7b1ea3b538aa4b338b71',1,'crisp::Universe']]], - ['universe_5fpublic_216',['UNIVERSE_PUBLIC',['../classcrisp_1_1_universe.html#aab80c72ee02715989493783e45f10fbb',1,'crisp::Universe']]], - ['universe_5ftosdr_217',['UNIVERSE_TOSDR',['../classcrisp_1_1_universe.html#a5d195f7415a5a53669c4102aa1bd9d6d',1,'crisp::Universe']]], - ['uuidv4_218',['UUIDv4',['../classcrisp_1_1core_1_1_crypto.html#a74ce280f078249a84c6c4cbe146ddef9',1,'crisp::core::Crypto']]] + ['uninstall_209',['uninstall',['../classcrisp_1_1core_1_1_plugin.html#a9db6a246faa6b948911078c4be4445c8',1,'crisp\core\Plugin\uninstall()'],['../classcrisp_1_1core_1_1_plugins.html#a613477d731542ada2effda2624b22baa',1,'crisp\core\Plugins\uninstall()'],['../classcrisp_1_1core_1_1_themes.html#adcf348d20bb3820c303e286eb7897192',1,'crisp\core\Themes\uninstall()']]], + ['uninstallcrons_210',['uninstallCrons',['../classcrisp_1_1core_1_1_plugins.html#a1aed9c205b0d0335408a6aff9199e524',1,'crisp::core::Plugins']]], + ['uninstallkvstorage_211',['uninstallKVStorage',['../classcrisp_1_1core_1_1_plugins.html#ae818c2a7a030c57d7c128b9513174236',1,'crisp\core\Plugins\uninstallKVStorage()'],['../classcrisp_1_1core_1_1_themes.html#a159bed4ed508b144860af6dc60fd4d29',1,'crisp\core\Themes\uninstallKVStorage()']]], + ['uninstalltranslations_212',['uninstallTranslations',['../classcrisp_1_1core_1_1_plugins.html#a5acab9a66f2cdb695f4c73de97c3687e',1,'crisp\core\Plugins\uninstallTranslations()'],['../classcrisp_1_1core_1_1_themes.html#a13d74dc19dc45444508e936768a5ec21',1,'crisp\core\Themes\uninstallTranslations()']]], + ['universe_213',['Universe',['../classcrisp_1_1_universe.html',1,'crisp']]], + ['universe_2ephp_214',['Universe.php',['../_universe_8php.html',1,'']]], + ['universe_5fbeta_215',['UNIVERSE_BETA',['../classcrisp_1_1_universe.html#a9a02599d489d82a7da08abeba279931a',1,'crisp::Universe']]], + ['universe_5fdev_216',['UNIVERSE_DEV',['../classcrisp_1_1_universe.html#ab137dbf19f0e7b1ea3b538aa4b338b71',1,'crisp::Universe']]], + ['universe_5fpublic_217',['UNIVERSE_PUBLIC',['../classcrisp_1_1_universe.html#aab80c72ee02715989493783e45f10fbb',1,'crisp::Universe']]], + ['universe_5ftosdr_218',['UNIVERSE_TOSDR',['../classcrisp_1_1_universe.html#a5d195f7415a5a53669c4102aa1bd9d6d',1,'crisp::Universe']]], + ['uuidv4_219',['UUIDv4',['../classcrisp_1_1core_1_1_crypto.html#a74ce280f078249a84c6c4cbe146ddef9',1,'crisp::core::Crypto']]] ]; diff --git a/docs/search/all_5.js b/docs/search/all_5.js index 6303b5d5..41fe91b6 100644 --- a/docs/search/all_5.js +++ b/docs/search/all_5.js @@ -18,5 +18,6 @@ var searchData= ['deprecated_20list_56',['Deprecated List',['../deprecated.html',1,'']]], ['dev_2edox_57',['dev.dox',['../dev_8dox.html',1,'']]], ['developing_20plugins_58',['Developing Plugins',['../devplugin.html',1,'']]], - ['disable_59',['disable',['../classcrisp_1_1api_1_1_language.html#a545341e59cc9a0dafc4e265d60d4b5d6',1,'crisp::api::Language']]] + ['disable_59',['disable',['../classcrisp_1_1api_1_1_language.html#a545341e59cc9a0dafc4e265d60d4b5d6',1,'crisp::api::Language']]], + ['dropcolumn_60',['dropColumn',['../classcrisp_1_1core_1_1_migrations.html#a4d830d14a586e54da90d752e2fda8d0c',1,'crisp::core::Migrations']]] ]; diff --git a/docs/search/all_6.js b/docs/search/all_6.js index a97ecf9a..df57b466 100644 --- a/docs/search/all_6.js +++ b/docs/search/all_6.js @@ -1,11 +1,11 @@ var searchData= [ - ['edittranslation_60',['editTranslation',['../classcrisp_1_1api_1_1_language.html#adfee32e203d4024721d158c5a2dba786',1,'crisp::api::Language']]], - ['enable_61',['enable',['../classcrisp_1_1api_1_1_language.html#a91e658a6e3fccc3028f2d71122bc4b8f',1,'crisp::api::Language']]], - ['encrypt_62',['encrypt',['../classcrisp_1_1core_1_1_crypto.html#a638285d91f747220bcb45ae382bd9313',1,'crisp::core::Crypto']]], - ['end_63',['end',['../classcrisp_1_1core_1_1_migrations.html#a817082ace0e2589d27b22890290aa4a9',1,'crisp::core::Migrations']]], - ['endswith_64',['endsWith',['../classcrisp_1_1api_1_1_helper.html#a2549562216f3498de2fb3645a6fb10e0',1,'crisp::api::Helper']]], - ['errorreporter_65',['ErrorReporter',['../classcrisp_1_1api_1_1_error_reporter.html',1,'crisp::api']]], - ['errorreporter_2ephp_66',['ErrorReporter.php',['../_error_reporter_8php.html',1,'']]], - ['exists_67',['exists',['../classcrisp_1_1api_1_1_a_p_i_stats.html#a337c4ac8bbd8e330a96e22aba11c9777',1,'crisp\api\APIStats\exists()'],['../classcrisp_1_1api_1_1_config.html#a89c8217b558fda742458fa481af0a883',1,'crisp\api\Config\exists()'],['../classcrisp_1_1api_1_1_language.html#ac2f864b72dc2f778e68ad96364c48c5e',1,'crisp\api\Language\exists()'],['../classcrisp_1_1api_1_1_translation.html#a89c8217b558fda742458fa481af0a883',1,'crisp\api\Translation\exists()']]] + ['edittranslation_61',['editTranslation',['../classcrisp_1_1api_1_1_language.html#adfee32e203d4024721d158c5a2dba786',1,'crisp::api::Language']]], + ['enable_62',['enable',['../classcrisp_1_1api_1_1_language.html#a91e658a6e3fccc3028f2d71122bc4b8f',1,'crisp::api::Language']]], + ['encrypt_63',['encrypt',['../classcrisp_1_1core_1_1_crypto.html#a638285d91f747220bcb45ae382bd9313',1,'crisp::core::Crypto']]], + ['end_64',['end',['../classcrisp_1_1core_1_1_migrations.html#a817082ace0e2589d27b22890290aa4a9',1,'crisp::core::Migrations']]], + ['endswith_65',['endsWith',['../classcrisp_1_1api_1_1_helper.html#a2549562216f3498de2fb3645a6fb10e0',1,'crisp::api::Helper']]], + ['errorreporter_66',['ErrorReporter',['../classcrisp_1_1api_1_1_error_reporter.html',1,'crisp::api']]], + ['errorreporter_2ephp_67',['ErrorReporter.php',['../_error_reporter_8php.html',1,'']]], + ['exists_68',['exists',['../classcrisp_1_1api_1_1_a_p_i_stats.html#a337c4ac8bbd8e330a96e22aba11c9777',1,'crisp\api\APIStats\exists()'],['../classcrisp_1_1api_1_1_config.html#a89c8217b558fda742458fa481af0a883',1,'crisp\api\Config\exists()'],['../classcrisp_1_1api_1_1_language.html#ac2f864b72dc2f778e68ad96364c48c5e',1,'crisp\api\Language\exists()'],['../classcrisp_1_1api_1_1_translation.html#a89c8217b558fda742458fa481af0a883',1,'crisp\api\Translation\exists()']]] ]; diff --git a/docs/search/all_7.js b/docs/search/all_7.js index cfd69197..e65969a3 100644 --- a/docs/search/all_7.js +++ b/docs/search/all_7.js @@ -1,10 +1,10 @@ var searchData= [ - ['fetch_68',['fetch',['../classcrisp_1_1api_1_1_language.html#ae48cc10bd727774bb36203986ce3b176',1,'crisp\api\Language\fetch()'],['../classcrisp_1_1api_1_1lists_1_1_cron.html#adfa7dd3ab32ebe9d6ee568f2e8312b0a',1,'crisp\api\lists\Cron\fetch()'],['../classcrisp_1_1api_1_1_translation.html#a45c1950490be805de24501b6493167b4',1,'crisp\api\Translation\fetch()']]], - ['fetchall_69',['fetchAll',['../classcrisp_1_1api_1_1lists_1_1_cron.html#aea8e7edb8a7eccf11279bcd57ccd8286',1,'crisp\api\lists\Cron\fetchAll()'],['../classcrisp_1_1api_1_1_translation.html#ae34d4fd9564440f5c5c7c905009f6958',1,'crisp\api\Translation\fetchAll()']]], - ['fetchallbykey_70',['fetchAllByKey',['../classcrisp_1_1api_1_1_translation.html#ae232e62d02f091173b31b87cd82ec90a',1,'crisp::api::Translation']]], - ['fetchlanguages_71',['fetchLanguages',['../classcrisp_1_1api_1_1lists_1_1_languages.html#a42058cdda12f0f8ffe5773e981dc78af',1,'crisp::api::lists::Languages']]], - ['fetchunprocessed_72',['fetchUnprocessed',['../classcrisp_1_1api_1_1lists_1_1_cron.html#a17e71d5f542253cdb7a52110601309b2',1,'crisp::api::lists::Cron']]], - ['fetchunprocessedschedule_73',['fetchUnprocessedSchedule',['../classcrisp_1_1api_1_1lists_1_1_cron.html#afedb5ffaa711da00b57c4ff0f99f1e2b',1,'crisp::api::lists::Cron']]], - ['filteralphanum_74',['filterAlphaNum',['../classcrisp_1_1api_1_1_helper.html#a1003c6b3b59a848fe367dd5543130318',1,'crisp::api::Helper']]] + ['fetch_69',['fetch',['../classcrisp_1_1api_1_1_language.html#ae48cc10bd727774bb36203986ce3b176',1,'crisp\api\Language\fetch()'],['../classcrisp_1_1api_1_1lists_1_1_cron.html#adfa7dd3ab32ebe9d6ee568f2e8312b0a',1,'crisp\api\lists\Cron\fetch()'],['../classcrisp_1_1api_1_1_translation.html#a45c1950490be805de24501b6493167b4',1,'crisp\api\Translation\fetch()']]], + ['fetchall_70',['fetchAll',['../classcrisp_1_1api_1_1lists_1_1_cron.html#aea8e7edb8a7eccf11279bcd57ccd8286',1,'crisp\api\lists\Cron\fetchAll()'],['../classcrisp_1_1api_1_1_translation.html#ae34d4fd9564440f5c5c7c905009f6958',1,'crisp\api\Translation\fetchAll()']]], + ['fetchallbykey_71',['fetchAllByKey',['../classcrisp_1_1api_1_1_translation.html#ae232e62d02f091173b31b87cd82ec90a',1,'crisp::api::Translation']]], + ['fetchlanguages_72',['fetchLanguages',['../classcrisp_1_1api_1_1lists_1_1_languages.html#a42058cdda12f0f8ffe5773e981dc78af',1,'crisp::api::lists::Languages']]], + ['fetchunprocessed_73',['fetchUnprocessed',['../classcrisp_1_1api_1_1lists_1_1_cron.html#a17e71d5f542253cdb7a52110601309b2',1,'crisp::api::lists::Cron']]], + ['fetchunprocessedschedule_74',['fetchUnprocessedSchedule',['../classcrisp_1_1api_1_1lists_1_1_cron.html#afedb5ffaa711da00b57c4ff0f99f1e2b',1,'crisp::api::lists::Cron']]], + ['filteralphanum_75',['filterAlphaNum',['../classcrisp_1_1api_1_1_helper.html#a1003c6b3b59a848fe367dd5543130318',1,'crisp::api::Helper']]] ]; diff --git a/docs/search/all_8.js b/docs/search/all_8.js index f97c5519..3cae42e9 100644 --- a/docs/search/all_8.js +++ b/docs/search/all_8.js @@ -1,45 +1,45 @@ var searchData= [ - ['generateapifiles_75',['generateApiFiles',['../classcrisp_1_1api_1_1_phoenix.html#aaadb766fd8e5b0c20c0eeec4e8c0b3d5',1,'crisp::api::Phoenix']]], - ['get_76',['get',['../classcrisp_1_1api_1_1_a_p_i_stats.html#a430fe7b6f483eba7c36e22e37f79cadf',1,'crisp\api\APIStats\get()'],['../classcrisp_1_1api_1_1_config.html#ac25f6d0b3db3854589ff1929302dbfdb',1,'crisp\api\Config\get()'],['../classcrisp_1_1api_1_1_translation.html#a44e8a2189b75d0f8aabd31031893cb53',1,'crisp\api\Translation\get()']]], - ['getcase_77',['getCase',['../classcrisp_1_1api_1_1_phoenix.html#a724f217ac1171fcf5e1b903c24d00e2e',1,'crisp::api::Phoenix']]], - ['getcasepg_78',['getCasePG',['../classcrisp_1_1api_1_1_phoenix.html#a5f1943be4038d4c82fa02ae36809b865',1,'crisp::api::Phoenix']]], - ['getcases_79',['getCases',['../classcrisp_1_1api_1_1_phoenix.html#aa507a99cf4e900d60d46b4a44f7d6ba1',1,'crisp::api::Phoenix']]], - ['getcasespg_80',['getCasesPG',['../classcrisp_1_1api_1_1_phoenix.html#a8e1fd73aaa6220827e8ccd7c8818c385',1,'crisp::api::Phoenix']]], - ['getcode_81',['getCode',['../classcrisp_1_1api_1_1_language.html#ab5e24da53b4a0d0848b18c1e832f47ff',1,'crisp::api::Language']]], - ['getconfig_82',['getConfig',['../classcrisp_1_1core_1_1_plugin.html#a8282f5153adc3ed0d4c94e959530a4d3',1,'crisp::core::Plugin']]], - ['getdbconnector_83',['getDBConnector',['../classcrisp_1_1core_1_1_my_s_q_l.html#a7ef42b56201d7af4fc2d1c38ab6c7f27',1,'crisp\core\MySQL\getDBConnector()'],['../classcrisp_1_1core_1_1_postgres.html#a7ef42b56201d7af4fc2d1c38ab6c7f27',1,'crisp\core\Postgres\getDBConnector()'],['../classcrisp_1_1core_1_1_redis.html#a7ef42b56201d7af4fc2d1c38ab6c7f27',1,'crisp\core\Redis\getDBConnector()']]], - ['getdocumentsbyservicepg_84',['getDocumentsByServicePG',['../classcrisp_1_1api_1_1_phoenix.html#a32e95fd68045cd95203727e9f03acd62',1,'crisp::api::Phoenix']]], - ['getflag_85',['getFlag',['../classcrisp_1_1api_1_1_language.html#a381de5803b7657f165a06185c38deec1',1,'crisp::api::Language']]], - ['getgitbranch_86',['getGitBranch',['../classcrisp_1_1api_1_1_helper.html#a007ceae8b446fcd12ebcf321b3b35696',1,'crisp::api::Helper']]], - ['getgitrevision_87',['getGitRevision',['../classcrisp_1_1api_1_1_helper.html#abbda27f7d9e553bd881b5dd5e98bb1ae',1,'crisp::api::Helper']]], - ['getgitrevisionlink_88',['getGitRevisionLink',['../classcrisp_1_1api_1_1_helper.html#ac529e02361290ca584e1132b45bad572',1,'crisp::api::Helper']]], - ['getlanguagebycode_89',['getLanguageByCode',['../classcrisp_1_1api_1_1lists_1_1_languages.html#aff95299f239623b016ba91b491562416',1,'crisp::api::lists::Languages']]], - ['getlanguagebyid_90',['getLanguageByID',['../classcrisp_1_1api_1_1lists_1_1_languages.html#a49ca481d49201e48422674385d93aee7',1,'crisp::api::lists::Languages']]], - ['getlatestgitrevision_91',['getLatestGitRevision',['../classcrisp_1_1api_1_1_helper.html#afc19cc5a7636ad6cfc2025ea9e39ba42',1,'crisp::api::Helper']]], - ['getlocale_92',['getLocale',['../classcrisp_1_1api_1_1_helper.html#a7166a1dbef39ee5a6bcabf6bca93a654',1,'crisp::api::Helper']]], - ['getname_93',['getName',['../classcrisp_1_1api_1_1_language.html#a3d0963e68bb313b163a73f2803c64600',1,'crisp::api::Language']]], - ['getnativename_94',['getNativeName',['../classcrisp_1_1api_1_1_language.html#a288c91ba56af1e2a57e48043d799d529',1,'crisp::api::Language']]], - ['getpluginmetadata_95',['getPluginMetadata',['../classcrisp_1_1core_1_1_plugins.html#ada6a43ee2838264612e62ae839d85ded',1,'crisp::core::Plugins']]], - ['getplural_96',['getPlural',['../classcrisp_1_1api_1_1_translation.html#ab2063d37e3d4ab58f0368d2297b54880',1,'crisp::api::Translation']]], - ['getpoint_97',['getPoint',['../classcrisp_1_1api_1_1_phoenix.html#a1e45c2139fdbbd21a908e33d30b8bdfd',1,'crisp::api::Phoenix']]], - ['getpointpg_98',['getPointPG',['../classcrisp_1_1api_1_1_phoenix.html#a1811d85842a29c8625f9c0e159b0e7d9',1,'crisp::api::Phoenix']]], - ['getpointsbyservicepg_99',['getPointsByServicePG',['../classcrisp_1_1api_1_1_phoenix.html#a147f6252d6b9fa95ecceeca569e71af8',1,'crisp::api::Phoenix']]], - ['getrealipaddr_100',['getRealIpAddr',['../classcrisp_1_1api_1_1_helper.html#a00ef592f6ce6b745b63930b8e979aab9',1,'crisp::api::Helper']]], - ['getservice_101',['getService',['../classcrisp_1_1api_1_1_phoenix.html#aa259206b079662ae55d81d666630facb',1,'crisp::api::Phoenix']]], - ['getservicebyname_102',['getServiceByName',['../classcrisp_1_1api_1_1_phoenix.html#ac29e6de4243d250fff6602d24699d71a',1,'crisp::api::Phoenix']]], - ['getservicebynamepg_103',['getServiceByNamePG',['../classcrisp_1_1api_1_1_phoenix.html#afd61521a46e832bc21ae3c8452ecb872',1,'crisp::api::Phoenix']]], - ['getservicebyslugpg_104',['getServiceBySlugPG',['../classcrisp_1_1api_1_1_phoenix.html#a06daeb1064d4d3f357a2a091f0d29f10',1,'crisp::api::Phoenix']]], - ['getservicepg_105',['getServicePG',['../classcrisp_1_1api_1_1_phoenix.html#a00750862c82bf4ad292cbe9d2b918433',1,'crisp::api::Phoenix']]], - ['getservices_106',['getServices',['../classcrisp_1_1api_1_1_phoenix.html#a9922d793e807a52de6d5abecbbed7596',1,'crisp::api::Phoenix']]], - ['getservicespg_107',['getServicesPG',['../classcrisp_1_1api_1_1_phoenix.html#ac6414db18414448c2fadb9748ef914c9',1,'crisp::api::Phoenix']]], - ['getthememetadata_108',['getThemeMetadata',['../classcrisp_1_1core_1_1_themes.html#a37a6d17f622c3303b77d1a38d89cd65c',1,'crisp::core::Themes']]], - ['gettimestamp_109',['getTimestamp',['../classcrisp_1_1api_1_1_config.html#a08c080a39848c73bf9fd57e436cafb68',1,'crisp::api::Config']]], - ['gettopic_110',['getTopic',['../classcrisp_1_1api_1_1_phoenix.html#a56a5993963ab46ec9175e100af18c97b',1,'crisp::api::Phoenix']]], - ['gettopicpg_111',['getTopicPG',['../classcrisp_1_1api_1_1_phoenix.html#a5f4a11325bfb46ee3d7bf51274e71ff7',1,'crisp::api::Phoenix']]], - ['gettopics_112',['getTopics',['../classcrisp_1_1api_1_1_phoenix.html#a7a119c40f9f615124308f366b2794825',1,'crisp::api::Phoenix']]], - ['gettopicspg_113',['getTopicsPG',['../classcrisp_1_1api_1_1_phoenix.html#a80700efc8413a338cd2b95ffffde8eb5',1,'crisp::api::Phoenix']]], - ['gettranslation_114',['getTranslation',['../classcrisp_1_1core_1_1_plugin.html#ae1df982546ea19c3dc1eeef1e4f7b510',1,'crisp::core::Plugin']]], - ['getuniverse_115',['getUniverse',['../classcrisp_1_1_universe.html#af079f02cc5e5526594349c1b26c1cd76',1,'crisp::Universe']]], - ['getuniversename_116',['getUniverseName',['../classcrisp_1_1_universe.html#a18e1cf7456afe0c3bd872ebeb0e1869c',1,'crisp::Universe']]] + ['generateapifiles_76',['generateApiFiles',['../classcrisp_1_1api_1_1_phoenix.html#aaadb766fd8e5b0c20c0eeec4e8c0b3d5',1,'crisp::api::Phoenix']]], + ['get_77',['get',['../classcrisp_1_1api_1_1_a_p_i_stats.html#a430fe7b6f483eba7c36e22e37f79cadf',1,'crisp\api\APIStats\get()'],['../classcrisp_1_1api_1_1_config.html#ac25f6d0b3db3854589ff1929302dbfdb',1,'crisp\api\Config\get()'],['../classcrisp_1_1api_1_1_translation.html#a44e8a2189b75d0f8aabd31031893cb53',1,'crisp\api\Translation\get()']]], + ['getcase_78',['getCase',['../classcrisp_1_1api_1_1_phoenix.html#a724f217ac1171fcf5e1b903c24d00e2e',1,'crisp::api::Phoenix']]], + ['getcasepg_79',['getCasePG',['../classcrisp_1_1api_1_1_phoenix.html#a5f1943be4038d4c82fa02ae36809b865',1,'crisp::api::Phoenix']]], + ['getcases_80',['getCases',['../classcrisp_1_1api_1_1_phoenix.html#aa507a99cf4e900d60d46b4a44f7d6ba1',1,'crisp::api::Phoenix']]], + ['getcasespg_81',['getCasesPG',['../classcrisp_1_1api_1_1_phoenix.html#a8e1fd73aaa6220827e8ccd7c8818c385',1,'crisp::api::Phoenix']]], + ['getcode_82',['getCode',['../classcrisp_1_1api_1_1_language.html#ab5e24da53b4a0d0848b18c1e832f47ff',1,'crisp::api::Language']]], + ['getconfig_83',['getConfig',['../classcrisp_1_1core_1_1_plugin.html#a8282f5153adc3ed0d4c94e959530a4d3',1,'crisp::core::Plugin']]], + ['getdbconnector_84',['getDBConnector',['../classcrisp_1_1core_1_1_my_s_q_l.html#a7ef42b56201d7af4fc2d1c38ab6c7f27',1,'crisp\core\MySQL\getDBConnector()'],['../classcrisp_1_1core_1_1_postgres.html#a7ef42b56201d7af4fc2d1c38ab6c7f27',1,'crisp\core\Postgres\getDBConnector()'],['../classcrisp_1_1core_1_1_redis.html#a7ef42b56201d7af4fc2d1c38ab6c7f27',1,'crisp\core\Redis\getDBConnector()']]], + ['getdocumentsbyservicepg_85',['getDocumentsByServicePG',['../classcrisp_1_1api_1_1_phoenix.html#a32e95fd68045cd95203727e9f03acd62',1,'crisp::api::Phoenix']]], + ['getflag_86',['getFlag',['../classcrisp_1_1api_1_1_language.html#a381de5803b7657f165a06185c38deec1',1,'crisp::api::Language']]], + ['getgitbranch_87',['getGitBranch',['../classcrisp_1_1api_1_1_helper.html#a007ceae8b446fcd12ebcf321b3b35696',1,'crisp::api::Helper']]], + ['getgitrevision_88',['getGitRevision',['../classcrisp_1_1api_1_1_helper.html#abbda27f7d9e553bd881b5dd5e98bb1ae',1,'crisp::api::Helper']]], + ['getgitrevisionlink_89',['getGitRevisionLink',['../classcrisp_1_1api_1_1_helper.html#ac529e02361290ca584e1132b45bad572',1,'crisp::api::Helper']]], + ['getlanguagebycode_90',['getLanguageByCode',['../classcrisp_1_1api_1_1lists_1_1_languages.html#aff95299f239623b016ba91b491562416',1,'crisp::api::lists::Languages']]], + ['getlanguagebyid_91',['getLanguageByID',['../classcrisp_1_1api_1_1lists_1_1_languages.html#a49ca481d49201e48422674385d93aee7',1,'crisp::api::lists::Languages']]], + ['getlatestgitrevision_92',['getLatestGitRevision',['../classcrisp_1_1api_1_1_helper.html#afc19cc5a7636ad6cfc2025ea9e39ba42',1,'crisp::api::Helper']]], + ['getlocale_93',['getLocale',['../classcrisp_1_1api_1_1_helper.html#a7166a1dbef39ee5a6bcabf6bca93a654',1,'crisp::api::Helper']]], + ['getname_94',['getName',['../classcrisp_1_1api_1_1_language.html#a3d0963e68bb313b163a73f2803c64600',1,'crisp::api::Language']]], + ['getnativename_95',['getNativeName',['../classcrisp_1_1api_1_1_language.html#a288c91ba56af1e2a57e48043d799d529',1,'crisp::api::Language']]], + ['getpluginmetadata_96',['getPluginMetadata',['../classcrisp_1_1core_1_1_plugins.html#ada6a43ee2838264612e62ae839d85ded',1,'crisp::core::Plugins']]], + ['getplural_97',['getPlural',['../classcrisp_1_1api_1_1_translation.html#ab2063d37e3d4ab58f0368d2297b54880',1,'crisp::api::Translation']]], + ['getpoint_98',['getPoint',['../classcrisp_1_1api_1_1_phoenix.html#a1e45c2139fdbbd21a908e33d30b8bdfd',1,'crisp::api::Phoenix']]], + ['getpointpg_99',['getPointPG',['../classcrisp_1_1api_1_1_phoenix.html#a1811d85842a29c8625f9c0e159b0e7d9',1,'crisp::api::Phoenix']]], + ['getpointsbyservicepg_100',['getPointsByServicePG',['../classcrisp_1_1api_1_1_phoenix.html#a147f6252d6b9fa95ecceeca569e71af8',1,'crisp::api::Phoenix']]], + ['getrealipaddr_101',['getRealIpAddr',['../classcrisp_1_1api_1_1_helper.html#a00ef592f6ce6b745b63930b8e979aab9',1,'crisp::api::Helper']]], + ['getservice_102',['getService',['../classcrisp_1_1api_1_1_phoenix.html#aa259206b079662ae55d81d666630facb',1,'crisp::api::Phoenix']]], + ['getservicebyname_103',['getServiceByName',['../classcrisp_1_1api_1_1_phoenix.html#ac29e6de4243d250fff6602d24699d71a',1,'crisp::api::Phoenix']]], + ['getservicebynamepg_104',['getServiceByNamePG',['../classcrisp_1_1api_1_1_phoenix.html#afd61521a46e832bc21ae3c8452ecb872',1,'crisp::api::Phoenix']]], + ['getservicebyslugpg_105',['getServiceBySlugPG',['../classcrisp_1_1api_1_1_phoenix.html#a06daeb1064d4d3f357a2a091f0d29f10',1,'crisp::api::Phoenix']]], + ['getservicepg_106',['getServicePG',['../classcrisp_1_1api_1_1_phoenix.html#a00750862c82bf4ad292cbe9d2b918433',1,'crisp::api::Phoenix']]], + ['getservices_107',['getServices',['../classcrisp_1_1api_1_1_phoenix.html#a9922d793e807a52de6d5abecbbed7596',1,'crisp::api::Phoenix']]], + ['getservicespg_108',['getServicesPG',['../classcrisp_1_1api_1_1_phoenix.html#ac6414db18414448c2fadb9748ef914c9',1,'crisp::api::Phoenix']]], + ['getthememetadata_109',['getThemeMetadata',['../classcrisp_1_1core_1_1_themes.html#a37a6d17f622c3303b77d1a38d89cd65c',1,'crisp::core::Themes']]], + ['gettimestamp_110',['getTimestamp',['../classcrisp_1_1api_1_1_config.html#a08c080a39848c73bf9fd57e436cafb68',1,'crisp::api::Config']]], + ['gettopic_111',['getTopic',['../classcrisp_1_1api_1_1_phoenix.html#a56a5993963ab46ec9175e100af18c97b',1,'crisp::api::Phoenix']]], + ['gettopicpg_112',['getTopicPG',['../classcrisp_1_1api_1_1_phoenix.html#a5f4a11325bfb46ee3d7bf51274e71ff7',1,'crisp::api::Phoenix']]], + ['gettopics_113',['getTopics',['../classcrisp_1_1api_1_1_phoenix.html#a7a119c40f9f615124308f366b2794825',1,'crisp::api::Phoenix']]], + ['gettopicspg_114',['getTopicsPG',['../classcrisp_1_1api_1_1_phoenix.html#a80700efc8413a338cd2b95ffffde8eb5',1,'crisp::api::Phoenix']]], + ['gettranslation_115',['getTranslation',['../classcrisp_1_1core_1_1_plugin.html#ae1df982546ea19c3dc1eeef1e4f7b510',1,'crisp::core::Plugin']]], + ['getuniverse_116',['getUniverse',['../classcrisp_1_1_universe.html#af079f02cc5e5526594349c1b26c1cd76',1,'crisp::Universe']]], + ['getuniversename_117',['getUniverseName',['../classcrisp_1_1_universe.html#a18e1cf7456afe0c3bd872ebeb0e1869c',1,'crisp::Universe']]] ]; diff --git a/docs/search/all_9.js b/docs/search/all_9.js index 7473a5b0..db72753f 100644 --- a/docs/search/all_9.js +++ b/docs/search/all_9.js @@ -1,6 +1,6 @@ var searchData= [ - ['helper_117',['Helper',['../classcrisp_1_1api_1_1_helper.html',1,'crisp::api']]], - ['helper_2ephp_118',['Helper.php',['../_helper_8php.html',1,'']]], - ['hook_2ephp_119',['Hook.php',['../_hook_8php.html',1,'']]] + ['helper_118',['Helper',['../classcrisp_1_1api_1_1_helper.html',1,'crisp::api']]], + ['helper_2ephp_119',['Helper.php',['../_helper_8php.html',1,'']]], + ['hook_2ephp_120',['Hook.php',['../_hook_8php.html',1,'']]] ]; diff --git a/docs/search/all_a.js b/docs/search/all_a.js index 6364ee38..4e70f010 100644 --- a/docs/search/all_a.js +++ b/docs/search/all_a.js @@ -1,19 +1,19 @@ var searchData= [ - ['initdb_120',['initDB',['../classcrisp_1_1api_1_1_a_p_i_stats.html#ae5e7eb4ea0667dc07287aebd28e246c3',1,'crisp\api\APIStats\initDB()'],['../classcrisp_1_1api_1_1_error_reporter.html#ae5e7eb4ea0667dc07287aebd28e246c3',1,'crisp\api\ErrorReporter\initDB()']]], - ['install_121',['install',['../classcrisp_1_1core_1_1_plugins.html#ab0d93f988b65a197949370f45c0c2f02',1,'crisp\core\Plugins\install()'],['../classcrisp_1_1core_1_1_themes.html#aa5bd40c23d346dcb833357d2ed98f091',1,'crisp\core\Themes\install()']]], - ['installcrons_122',['installCrons',['../classcrisp_1_1core_1_1_plugins.html#a3e59fae12627421061e134a4867d8a94',1,'crisp::core::Plugins']]], - ['installkvstorage_123',['installKVStorage',['../classcrisp_1_1core_1_1_plugins.html#ae7c5f630440464d4ab8988d3e3adf677',1,'crisp\core\Plugins\installKVStorage()'],['../classcrisp_1_1core_1_1_themes.html#a064611c216c0f5100782b90cb17cb8a9',1,'crisp\core\Themes\installKVStorage()']]], - ['installtranslations_124',['installTranslations',['../classcrisp_1_1core_1_1_plugins.html#a75d4b26c12211dd6f0dc42a2c8f89b3b',1,'crisp\core\Plugins\installTranslations()'],['../classcrisp_1_1core_1_1_themes.html#ac422fbc78b75a974f25707791aa36209',1,'crisp\core\Themes\installTranslations()']]], - ['integrity_125',['integrity',['../classcrisp_1_1core_1_1_plugin.html#af50504b641965128314e7ef746003788',1,'crisp::core::Plugin']]], - ['integritycheck_126',['integrityCheck',['../classcrisp_1_1core_1_1_plugins.html#a0d638cee53d7dcb4dd82f1efeb084361',1,'crisp::core::Plugins']]], - ['invalidlanguageexception_127',['InvalidLanguageException',['../classcrisp_1_1exceptions_1_1_invalid_language_exception.html',1,'crisp::exceptions']]], - ['invalidlanguageexception_2ephp_128',['InvalidLanguageException.php',['../_invalid_language_exception_8php.html',1,'']]], - ['isenabled_129',['isEnabled',['../classcrisp_1_1api_1_1_language.html#ad734dc60b64a242fe183e0c23b192790',1,'crisp::api::Language']]], - ['isinstalled_130',['isInstalled',['../classcrisp_1_1core_1_1_plugins.html#a9922f40b72212730c4cf639f50e3e364',1,'crisp\core\Plugins\isInstalled()'],['../classcrisp_1_1core_1_1_themes.html#a1a4228cf190e918d2866ff4dbe140b23',1,'crisp\core\Themes\isInstalled()']]], - ['ismigrated_131',['isMigrated',['../classcrisp_1_1core_1_1_migrations.html#a7d4938c0383aad97545a1f62a8299b4b',1,'crisp::core::Migrations']]], - ['ismobile_132',['isMobile',['../classcrisp_1_1api_1_1_helper.html#af18fc91684720f67c66e9c92a38f8bb8',1,'crisp::api::Helper']]], - ['isserialized_133',['isSerialized',['../classcrisp_1_1api_1_1_helper.html#a0dde52b6a2dcbaea2d84f2bc6d4587cf',1,'crisp::api::Helper']]], - ['isvalid_134',['isValid',['../classcrisp_1_1core_1_1_plugins.html#a71a6bc758b558608ae0e6fe42ff7f8d0',1,'crisp\core\Plugins\isValid()'],['../classcrisp_1_1core_1_1_themes.html#abe1261c8e4b87a0974b7b065ff59c4a6',1,'crisp\core\Themes\isValid()']]], - ['isvalidpluginname_135',['isValidPluginName',['../classcrisp_1_1api_1_1_helper.html#a1eb52876ddcb2571c5cd891ed1d46695',1,'crisp::api::Helper']]] + ['initdb_121',['initDB',['../classcrisp_1_1api_1_1_a_p_i_stats.html#ae5e7eb4ea0667dc07287aebd28e246c3',1,'crisp\api\APIStats\initDB()'],['../classcrisp_1_1api_1_1_error_reporter.html#ae5e7eb4ea0667dc07287aebd28e246c3',1,'crisp\api\ErrorReporter\initDB()']]], + ['install_122',['install',['../classcrisp_1_1core_1_1_plugins.html#ab0d93f988b65a197949370f45c0c2f02',1,'crisp\core\Plugins\install()'],['../classcrisp_1_1core_1_1_themes.html#aa5bd40c23d346dcb833357d2ed98f091',1,'crisp\core\Themes\install()']]], + ['installcrons_123',['installCrons',['../classcrisp_1_1core_1_1_plugins.html#a3e59fae12627421061e134a4867d8a94',1,'crisp::core::Plugins']]], + ['installkvstorage_124',['installKVStorage',['../classcrisp_1_1core_1_1_plugins.html#ae7c5f630440464d4ab8988d3e3adf677',1,'crisp\core\Plugins\installKVStorage()'],['../classcrisp_1_1core_1_1_themes.html#a064611c216c0f5100782b90cb17cb8a9',1,'crisp\core\Themes\installKVStorage()']]], + ['installtranslations_125',['installTranslations',['../classcrisp_1_1core_1_1_plugins.html#a75d4b26c12211dd6f0dc42a2c8f89b3b',1,'crisp\core\Plugins\installTranslations()'],['../classcrisp_1_1core_1_1_themes.html#ac422fbc78b75a974f25707791aa36209',1,'crisp\core\Themes\installTranslations()']]], + ['integrity_126',['integrity',['../classcrisp_1_1core_1_1_plugin.html#af50504b641965128314e7ef746003788',1,'crisp::core::Plugin']]], + ['integritycheck_127',['integrityCheck',['../classcrisp_1_1core_1_1_plugins.html#a0d638cee53d7dcb4dd82f1efeb084361',1,'crisp::core::Plugins']]], + ['invalidlanguageexception_128',['InvalidLanguageException',['../classcrisp_1_1exceptions_1_1_invalid_language_exception.html',1,'crisp::exceptions']]], + ['invalidlanguageexception_2ephp_129',['InvalidLanguageException.php',['../_invalid_language_exception_8php.html',1,'']]], + ['isenabled_130',['isEnabled',['../classcrisp_1_1api_1_1_language.html#ad734dc60b64a242fe183e0c23b192790',1,'crisp::api::Language']]], + ['isinstalled_131',['isInstalled',['../classcrisp_1_1core_1_1_plugins.html#a9922f40b72212730c4cf639f50e3e364',1,'crisp\core\Plugins\isInstalled()'],['../classcrisp_1_1core_1_1_themes.html#a1a4228cf190e918d2866ff4dbe140b23',1,'crisp\core\Themes\isInstalled()']]], + ['ismigrated_132',['isMigrated',['../classcrisp_1_1core_1_1_migrations.html#a7d4938c0383aad97545a1f62a8299b4b',1,'crisp::core::Migrations']]], + ['ismobile_133',['isMobile',['../classcrisp_1_1api_1_1_helper.html#af18fc91684720f67c66e9c92a38f8bb8',1,'crisp::api::Helper']]], + ['isserialized_134',['isSerialized',['../classcrisp_1_1api_1_1_helper.html#a0dde52b6a2dcbaea2d84f2bc6d4587cf',1,'crisp::api::Helper']]], + ['isvalid_135',['isValid',['../classcrisp_1_1core_1_1_plugins.html#a71a6bc758b558608ae0e6fe42ff7f8d0',1,'crisp\core\Plugins\isValid()'],['../classcrisp_1_1core_1_1_themes.html#abe1261c8e4b87a0974b7b065ff59c4a6',1,'crisp\core\Themes\isValid()']]], + ['isvalidpluginname_136',['isValidPluginName',['../classcrisp_1_1api_1_1_helper.html#a1eb52876ddcb2571c5cd891ed1d46695',1,'crisp::api::Helper']]] ]; diff --git a/docs/search/all_b.js b/docs/search/all_b.js index 16f57694..4fa9e238 100644 --- a/docs/search/all_b.js +++ b/docs/search/all_b.js @@ -1,17 +1,17 @@ var searchData= [ - ['language_136',['Language',['../classcrisp_1_1api_1_1_language.html',1,'crisp::api']]], - ['language_2ephp_137',['Language.php',['../_language_8php.html',1,'']]], - ['languages_138',['Languages',['../classcrisp_1_1api_1_1lists_1_1_languages.html',1,'crisp::api::lists']]], - ['languages_2ephp_139',['Languages.php',['../_languages_8php.html',1,'']]], - ['list_140',['list',['../classcrisp_1_1api_1_1_config.html#a60f9ff17d15bf996c3d374518777d2d6',1,'crisp::api::Config']]], - ['listall_141',['listAll',['../classcrisp_1_1api_1_1_a_p_i_stats.html#ad207f3f5f3f454f32cf97615451624bc',1,'crisp::api::APIStats']]], - ['listallbycount_142',['listAllByCount',['../classcrisp_1_1api_1_1_a_p_i_stats.html#ac303b794982c76b776e4c64023ed98f7',1,'crisp::api::APIStats']]], - ['listconfig_143',['listConfig',['../classcrisp_1_1core_1_1_plugin.html#a56a11b7f15ba3715a2f6e8a829b42962',1,'crisp\core\Plugin\listConfig()'],['../classcrisp_1_1core_1_1_plugins.html#a651c27f610270a6019ece3d3d09bc8cb',1,'crisp\core\Plugins\listConfig()']]], - ['listlanguages_144',['listLanguages',['../classcrisp_1_1api_1_1_translation.html#ac83fea9398598f316f651b3b83206acc',1,'crisp::api::Translation']]], - ['listplugins_145',['listPlugins',['../classcrisp_1_1core_1_1_plugins.html#a82d97ddabef7dc7917afb2e8a88818f5',1,'crisp::core::Plugins']]], - ['listtranslations_146',['listTranslations',['../classcrisp_1_1api_1_1_translation.html#add1862ef0ab8870ba795ef9631cc4ff2',1,'crisp\api\Translation\listTranslations()'],['../classcrisp_1_1core_1_1_plugins.html#af1ab715d9a34a02a3720e7769be1a4b4',1,'crisp\core\Plugins\listTranslations()']]], - ['load_147',['load',['../classcrisp_1_1core_1_1_plugins.html#ad5661c97c530ef2b71cc696f025887f9',1,'crisp\core\Plugins\load()'],['../classcrisp_1_1core_1_1_themes.html#ad5661c97c530ef2b71cc696f025887f9',1,'crisp\core\Themes\load()']]], - ['loadapi_148',['loadAPI',['../classcrisp_1_1core_1_1_plugins.html#a9a18b97439a9178a5bdccfbd422bf10b',1,'crisp::core::Plugins']]], - ['loadedplugins_149',['loadedPlugins',['../classcrisp_1_1core_1_1_plugins.html#ad0d4c2f3afaefb1c33c5d91d1933b0ee',1,'crisp::core::Plugins']]] + ['language_137',['Language',['../classcrisp_1_1api_1_1_language.html',1,'crisp::api']]], + ['language_2ephp_138',['Language.php',['../_language_8php.html',1,'']]], + ['languages_139',['Languages',['../classcrisp_1_1api_1_1lists_1_1_languages.html',1,'crisp::api::lists']]], + ['languages_2ephp_140',['Languages.php',['../_languages_8php.html',1,'']]], + ['list_141',['list',['../classcrisp_1_1api_1_1_config.html#a60f9ff17d15bf996c3d374518777d2d6',1,'crisp::api::Config']]], + ['listall_142',['listAll',['../classcrisp_1_1api_1_1_a_p_i_stats.html#ad207f3f5f3f454f32cf97615451624bc',1,'crisp::api::APIStats']]], + ['listallbycount_143',['listAllByCount',['../classcrisp_1_1api_1_1_a_p_i_stats.html#ac303b794982c76b776e4c64023ed98f7',1,'crisp::api::APIStats']]], + ['listconfig_144',['listConfig',['../classcrisp_1_1core_1_1_plugin.html#a56a11b7f15ba3715a2f6e8a829b42962',1,'crisp\core\Plugin\listConfig()'],['../classcrisp_1_1core_1_1_plugins.html#a651c27f610270a6019ece3d3d09bc8cb',1,'crisp\core\Plugins\listConfig()']]], + ['listlanguages_145',['listLanguages',['../classcrisp_1_1api_1_1_translation.html#ac83fea9398598f316f651b3b83206acc',1,'crisp::api::Translation']]], + ['listplugins_146',['listPlugins',['../classcrisp_1_1core_1_1_plugins.html#a82d97ddabef7dc7917afb2e8a88818f5',1,'crisp::core::Plugins']]], + ['listtranslations_147',['listTranslations',['../classcrisp_1_1api_1_1_translation.html#add1862ef0ab8870ba795ef9631cc4ff2',1,'crisp\api\Translation\listTranslations()'],['../classcrisp_1_1core_1_1_plugins.html#af1ab715d9a34a02a3720e7769be1a4b4',1,'crisp\core\Plugins\listTranslations()']]], + ['load_148',['load',['../classcrisp_1_1core_1_1_plugins.html#ad5661c97c530ef2b71cc696f025887f9',1,'crisp\core\Plugins\load()'],['../classcrisp_1_1core_1_1_themes.html#ad5661c97c530ef2b71cc696f025887f9',1,'crisp\core\Themes\load()']]], + ['loadapi_149',['loadAPI',['../classcrisp_1_1core_1_1_plugins.html#a9a18b97439a9178a5bdccfbd422bf10b',1,'crisp::core::Plugins']]], + ['loadedplugins_150',['loadedPlugins',['../classcrisp_1_1core_1_1_plugins.html#ad0d4c2f3afaefb1c33c5d91d1933b0ee',1,'crisp::core::Plugins']]] ]; diff --git a/docs/search/all_c.js b/docs/search/all_c.js index 42c1346d..f16bf48e 100644 --- a/docs/search/all_c.js +++ b/docs/search/all_c.js @@ -1,12 +1,12 @@ var searchData= [ - ['markascanceled_150',['markAsCanceled',['../classcrisp_1_1api_1_1lists_1_1_cron.html#a79f6cc9049fd2d344eccecebd480838f',1,'crisp::api::lists::Cron']]], - ['markasfailed_151',['markAsFailed',['../classcrisp_1_1api_1_1lists_1_1_cron.html#a0074a018e8ee051d3424cb7266a11e7d',1,'crisp::api::lists::Cron']]], - ['markasfinished_152',['markAsFinished',['../classcrisp_1_1api_1_1lists_1_1_cron.html#a4deb9bf19524ad984c361d25ae2a3686',1,'crisp::api::lists::Cron']]], - ['markasstarted_153',['markAsStarted',['../classcrisp_1_1api_1_1lists_1_1_cron.html#a3745a82c32e9f6af4e1035c03bee6eb3',1,'crisp::api::lists::Cron']]], - ['migrate_154',['migrate',['../classcrisp_1_1core_1_1_migrations.html#a40ee067b290f06bd50cf41affdeb60dd',1,'crisp::core::Migrations']]], - ['migrations_155',['Migrations',['../classcrisp_1_1core_1_1_migrations.html',1,'crisp::core']]], - ['migrations_2ephp_156',['Migrations.php',['../_migrations_8php.html',1,'']]], - ['mysql_157',['MySQL',['../classcrisp_1_1core_1_1_my_s_q_l.html',1,'crisp::core']]], - ['mysql_2ephp_158',['MySQL.php',['../_my_s_q_l_8php.html',1,'']]] + ['markascanceled_151',['markAsCanceled',['../classcrisp_1_1api_1_1lists_1_1_cron.html#a79f6cc9049fd2d344eccecebd480838f',1,'crisp::api::lists::Cron']]], + ['markasfailed_152',['markAsFailed',['../classcrisp_1_1api_1_1lists_1_1_cron.html#a0074a018e8ee051d3424cb7266a11e7d',1,'crisp::api::lists::Cron']]], + ['markasfinished_153',['markAsFinished',['../classcrisp_1_1api_1_1lists_1_1_cron.html#a4deb9bf19524ad984c361d25ae2a3686',1,'crisp::api::lists::Cron']]], + ['markasstarted_154',['markAsStarted',['../classcrisp_1_1api_1_1lists_1_1_cron.html#a3745a82c32e9f6af4e1035c03bee6eb3',1,'crisp::api::lists::Cron']]], + ['migrate_155',['migrate',['../classcrisp_1_1core_1_1_migrations.html#a40ee067b290f06bd50cf41affdeb60dd',1,'crisp::core::Migrations']]], + ['migrations_156',['Migrations',['../classcrisp_1_1core_1_1_migrations.html',1,'crisp::core']]], + ['migrations_2ephp_157',['Migrations.php',['../_migrations_8php.html',1,'']]], + ['mysql_158',['MySQL',['../classcrisp_1_1core_1_1_my_s_q_l.html',1,'crisp::core']]], + ['mysql_2ephp_159',['MySQL.php',['../_my_s_q_l_8php.html',1,'']]] ]; diff --git a/docs/search/all_d.js b/docs/search/all_d.js index daa88aca..c4fc139e 100644 --- a/docs/search/all_d.js +++ b/docs/search/all_d.js @@ -1,4 +1,4 @@ var searchData= [ - ['newtranslation_159',['newTranslation',['../classcrisp_1_1api_1_1_language.html#a2b0ce04b6f797dba362439e3d0175749',1,'crisp::api::Language']]] + ['newtranslation_160',['newTranslation',['../classcrisp_1_1api_1_1_language.html#a2b0ce04b6f797dba362439e3d0175749',1,'crisp::api::Language']]] ]; diff --git a/docs/search/all_e.js b/docs/search/all_e.js index e87ca467..eabee645 100644 --- a/docs/search/all_e.js +++ b/docs/search/all_e.js @@ -1,17 +1,17 @@ var searchData= [ - ['phoenix_160',['Phoenix',['../classcrisp_1_1api_1_1_phoenix.html',1,'crisp::api']]], - ['phoenix_2ephp_161',['Phoenix.php',['../_phoenix_8php.html',1,'']]], - ['placeholder_162',['PlaceHolder',['../classcrisp_1_1api_1_1_helper.html#a8326b9c817011a863b8f6c2baafef37b',1,'crisp::api::Helper']]], - ['plugin_163',['Plugin',['../classcrisp_1_1core_1_1_plugin.html',1,'crisp::core']]], - ['plugin_2ephp_164',['Plugin.php',['../_plugin_8php.html',1,'']]], - ['pluginapi_165',['PluginAPI',['../classcrisp_1_1core_1_1_plugin_a_p_i.html',1,'crisp::core']]], - ['pluginapi_2ephp_166',['PluginAPI.php',['../_plugin_a_p_i_8php.html',1,'']]], - ['plugins_167',['Plugins',['../classcrisp_1_1core_1_1_plugins.html',1,'crisp::core']]], - ['plugins_2ephp_168',['Plugins.php',['../_plugins_8php.html',1,'']]], - ['pointexists_169',['pointExists',['../classcrisp_1_1api_1_1_phoenix.html#a35e18765de7a079173e6b117bb70d320',1,'crisp::api::Phoenix']]], - ['pointexistspg_170',['pointExistsPG',['../classcrisp_1_1api_1_1_phoenix.html#abd12e3de000bce22a5c3cf4f497bffbc',1,'crisp::api::Phoenix']]], - ['postgres_171',['Postgres',['../classcrisp_1_1core_1_1_postgres.html',1,'crisp::core']]], - ['postgres_2ephp_172',['Postgres.php',['../_postgres_8php.html',1,'']]], - ['prettydump_173',['prettyDump',['../classcrisp_1_1api_1_1_helper.html#a93a7eee8cb14ed9864e7195da83b4a32',1,'crisp::api::Helper']]] + ['phoenix_161',['Phoenix',['../classcrisp_1_1api_1_1_phoenix.html',1,'crisp::api']]], + ['phoenix_2ephp_162',['Phoenix.php',['../_phoenix_8php.html',1,'']]], + ['placeholder_163',['PlaceHolder',['../classcrisp_1_1api_1_1_helper.html#a8326b9c817011a863b8f6c2baafef37b',1,'crisp::api::Helper']]], + ['plugin_164',['Plugin',['../classcrisp_1_1core_1_1_plugin.html',1,'crisp::core']]], + ['plugin_2ephp_165',['Plugin.php',['../_plugin_8php.html',1,'']]], + ['pluginapi_166',['PluginAPI',['../classcrisp_1_1core_1_1_plugin_a_p_i.html',1,'crisp::core']]], + ['pluginapi_2ephp_167',['PluginAPI.php',['../_plugin_a_p_i_8php.html',1,'']]], + ['plugins_168',['Plugins',['../classcrisp_1_1core_1_1_plugins.html',1,'crisp::core']]], + ['plugins_2ephp_169',['Plugins.php',['../_plugins_8php.html',1,'']]], + ['pointexists_170',['pointExists',['../classcrisp_1_1api_1_1_phoenix.html#a35e18765de7a079173e6b117bb70d320',1,'crisp::api::Phoenix']]], + ['pointexistspg_171',['pointExistsPG',['../classcrisp_1_1api_1_1_phoenix.html#abd12e3de000bce22a5c3cf4f497bffbc',1,'crisp::api::Phoenix']]], + ['postgres_172',['Postgres',['../classcrisp_1_1core_1_1_postgres.html',1,'crisp::core']]], + ['postgres_2ephp_173',['Postgres.php',['../_postgres_8php.html',1,'']]], + ['prettydump_174',['prettyDump',['../classcrisp_1_1api_1_1_helper.html#a93a7eee8cb14ed9864e7195da83b4a32',1,'crisp::api::Helper']]] ]; diff --git a/docs/search/all_f.js b/docs/search/all_f.js index 0dd85b5a..1187e887 100644 --- a/docs/search/all_f.js +++ b/docs/search/all_f.js @@ -1,13 +1,13 @@ var searchData= [ - ['redis_174',['Redis',['../classcrisp_1_1core_1_1_redis.html',1,'crisp::core']]], - ['redis_2ephp_175',['Redis.php',['../_redis_8php.html',1,'']]], - ['refreshkvstorage_176',['refreshKVStorage',['../classcrisp_1_1core_1_1_plugins.html#ae4f5da23b4391d33835ff6cb80e99c35',1,'crisp\core\Plugins\refreshKVStorage()'],['../classcrisp_1_1core_1_1_themes.html#a05b8ca21d6ee5a17b7773d5cbdf0a61b',1,'crisp\core\Themes\refreshKVStorage()']]], - ['refreshtranslations_177',['refreshTranslations',['../classcrisp_1_1core_1_1_plugins.html#a77ae6319b043cfc9f5aabfa546bf2fd6',1,'crisp\core\Plugins\refreshTranslations()'],['../classcrisp_1_1core_1_1_themes.html#a914afa63de07d13d347578b7a8b18673',1,'crisp\core\Themes\refreshTranslations()']]], - ['registerafterrenderhook_178',['registerAfterRenderHook',['../classcrisp_1_1core_1_1_plugin.html#a2a44d4795ce4023cd5173a30c4e9d87e',1,'crisp\core\Plugin\registerAfterRenderHook()'],['../classcrisp_1_1core_1_1_plugins.html#a0a8df1e18409966ed4192ad9d5b66861',1,'crisp\core\Plugins\registerAfterRenderHook()']]], - ['registerinstallhook_179',['registerInstallHook',['../classcrisp_1_1core_1_1_plugin.html#a686fc682ce8af045e7acef7d987eac97',1,'crisp\core\Plugin\registerInstallHook()'],['../classcrisp_1_1core_1_1_plugins.html#acff78ca85f87a3558ac98e093c1dfb82',1,'crisp\core\Plugins\registerInstallHook()'],['../classcrisp_1_1core_1_1_themes.html#a53d1c32ef5bb987166303efce3ac69af',1,'crisp\core\Themes\registerInstallHook()']]], - ['registeruninstallhook_180',['registerUninstallHook',['../classcrisp_1_1core_1_1_plugin.html#a61ba1de9028c609aa69d675753a0437e',1,'crisp\core\Plugin\registerUninstallHook()'],['../classcrisp_1_1core_1_1_plugins.html#a807f89718708ff201065c579b3d449b2',1,'crisp\core\Plugins\registerUninstallHook()'],['../classcrisp_1_1core_1_1_themes.html#a01581e1996d42593c35db54039750a43',1,'crisp\core\Themes\registerUninstallHook()']]], - ['reinstall_181',['reinstall',['../classcrisp_1_1core_1_1_plugins.html#af3192aa28b8081c2d51612f6d22d6182',1,'crisp\core\Plugins\reinstall()'],['../classcrisp_1_1core_1_1_themes.html#ac7c0ef287d09e09c4a58d3163e72796e',1,'crisp\core\Themes\reinstall()']]], - ['response_182',['response',['../classcrisp_1_1core_1_1_plugin_a_p_i.html#a189cb750ee35b423308962aa27691fcc',1,'crisp::core::PluginAPI']]], - ['rollback_183',['rollback',['../classcrisp_1_1core_1_1_migrations.html#afa549adf79e3f8c09fe8f903dd5fbfa7',1,'crisp::core::Migrations']]] + ['redis_175',['Redis',['../classcrisp_1_1core_1_1_redis.html',1,'crisp::core']]], + ['redis_2ephp_176',['Redis.php',['../_redis_8php.html',1,'']]], + ['refreshkvstorage_177',['refreshKVStorage',['../classcrisp_1_1core_1_1_plugins.html#ae4f5da23b4391d33835ff6cb80e99c35',1,'crisp\core\Plugins\refreshKVStorage()'],['../classcrisp_1_1core_1_1_themes.html#a05b8ca21d6ee5a17b7773d5cbdf0a61b',1,'crisp\core\Themes\refreshKVStorage()']]], + ['refreshtranslations_178',['refreshTranslations',['../classcrisp_1_1core_1_1_plugins.html#a77ae6319b043cfc9f5aabfa546bf2fd6',1,'crisp\core\Plugins\refreshTranslations()'],['../classcrisp_1_1core_1_1_themes.html#a914afa63de07d13d347578b7a8b18673',1,'crisp\core\Themes\refreshTranslations()']]], + ['registerafterrenderhook_179',['registerAfterRenderHook',['../classcrisp_1_1core_1_1_plugin.html#a2a44d4795ce4023cd5173a30c4e9d87e',1,'crisp\core\Plugin\registerAfterRenderHook()'],['../classcrisp_1_1core_1_1_plugins.html#a0a8df1e18409966ed4192ad9d5b66861',1,'crisp\core\Plugins\registerAfterRenderHook()']]], + ['registerinstallhook_180',['registerInstallHook',['../classcrisp_1_1core_1_1_plugin.html#a686fc682ce8af045e7acef7d987eac97',1,'crisp\core\Plugin\registerInstallHook()'],['../classcrisp_1_1core_1_1_plugins.html#acff78ca85f87a3558ac98e093c1dfb82',1,'crisp\core\Plugins\registerInstallHook()'],['../classcrisp_1_1core_1_1_themes.html#a53d1c32ef5bb987166303efce3ac69af',1,'crisp\core\Themes\registerInstallHook()']]], + ['registeruninstallhook_181',['registerUninstallHook',['../classcrisp_1_1core_1_1_plugin.html#a61ba1de9028c609aa69d675753a0437e',1,'crisp\core\Plugin\registerUninstallHook()'],['../classcrisp_1_1core_1_1_plugins.html#a807f89718708ff201065c579b3d449b2',1,'crisp\core\Plugins\registerUninstallHook()'],['../classcrisp_1_1core_1_1_themes.html#a01581e1996d42593c35db54039750a43',1,'crisp\core\Themes\registerUninstallHook()']]], + ['reinstall_182',['reinstall',['../classcrisp_1_1core_1_1_plugins.html#af3192aa28b8081c2d51612f6d22d6182',1,'crisp\core\Plugins\reinstall()'],['../classcrisp_1_1core_1_1_themes.html#ac7c0ef287d09e09c4a58d3163e72796e',1,'crisp\core\Themes\reinstall()']]], + ['response_183',['response',['../classcrisp_1_1core_1_1_plugin_a_p_i.html#a189cb750ee35b423308962aa27691fcc',1,'crisp::core::PluginAPI']]], + ['rollback_184',['rollback',['../classcrisp_1_1core_1_1_migrations.html#afa549adf79e3f8c09fe8f903dd5fbfa7',1,'crisp::core::Migrations']]] ]; diff --git a/docs/search/classes_0.js b/docs/search/classes_0.js index de927436..1f720484 100644 --- a/docs/search/classes_0.js +++ b/docs/search/classes_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['apistats_219',['APIStats',['../classcrisp_1_1api_1_1_a_p_i_stats.html',1,'crisp::api']]] + ['apistats_220',['APIStats',['../classcrisp_1_1api_1_1_a_p_i_stats.html',1,'crisp::api']]] ]; diff --git a/docs/search/classes_1.js b/docs/search/classes_1.js index cb21df82..b0cfd737 100644 --- a/docs/search/classes_1.js +++ b/docs/search/classes_1.js @@ -1,6 +1,6 @@ var searchData= [ - ['config_220',['Config',['../classcrisp_1_1api_1_1_config.html',1,'Config'],['../classcrisp_1_1core_1_1_config.html',1,'Config']]], - ['cron_221',['Cron',['../classcrisp_1_1api_1_1lists_1_1_cron.html',1,'crisp::api::lists']]], - ['crypto_222',['Crypto',['../classcrisp_1_1core_1_1_crypto.html',1,'crisp::core']]] + ['config_221',['Config',['../classcrisp_1_1api_1_1_config.html',1,'Config'],['../classcrisp_1_1core_1_1_config.html',1,'Config']]], + ['cron_222',['Cron',['../classcrisp_1_1api_1_1lists_1_1_cron.html',1,'crisp::api::lists']]], + ['crypto_223',['Crypto',['../classcrisp_1_1core_1_1_crypto.html',1,'crisp::core']]] ]; diff --git a/docs/search/classes_2.js b/docs/search/classes_2.js index cccae590..4ed040c5 100644 --- a/docs/search/classes_2.js +++ b/docs/search/classes_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['errorreporter_223',['ErrorReporter',['../classcrisp_1_1api_1_1_error_reporter.html',1,'crisp::api']]] + ['errorreporter_224',['ErrorReporter',['../classcrisp_1_1api_1_1_error_reporter.html',1,'crisp::api']]] ]; diff --git a/docs/search/classes_3.js b/docs/search/classes_3.js index c27bef8a..e5a5cea5 100644 --- a/docs/search/classes_3.js +++ b/docs/search/classes_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['helper_224',['Helper',['../classcrisp_1_1api_1_1_helper.html',1,'crisp::api']]] + ['helper_225',['Helper',['../classcrisp_1_1api_1_1_helper.html',1,'crisp::api']]] ]; diff --git a/docs/search/classes_4.js b/docs/search/classes_4.js index aa1cf6f5..b46fdcac 100644 --- a/docs/search/classes_4.js +++ b/docs/search/classes_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['invalidlanguageexception_225',['InvalidLanguageException',['../classcrisp_1_1exceptions_1_1_invalid_language_exception.html',1,'crisp::exceptions']]] + ['invalidlanguageexception_226',['InvalidLanguageException',['../classcrisp_1_1exceptions_1_1_invalid_language_exception.html',1,'crisp::exceptions']]] ]; diff --git a/docs/search/classes_5.js b/docs/search/classes_5.js index 793af524..415f756d 100644 --- a/docs/search/classes_5.js +++ b/docs/search/classes_5.js @@ -1,5 +1,5 @@ var searchData= [ - ['language_226',['Language',['../classcrisp_1_1api_1_1_language.html',1,'crisp::api']]], - ['languages_227',['Languages',['../classcrisp_1_1api_1_1lists_1_1_languages.html',1,'crisp::api::lists']]] + ['language_227',['Language',['../classcrisp_1_1api_1_1_language.html',1,'crisp::api']]], + ['languages_228',['Languages',['../classcrisp_1_1api_1_1lists_1_1_languages.html',1,'crisp::api::lists']]] ]; diff --git a/docs/search/classes_6.js b/docs/search/classes_6.js index 87ace04a..dc3ba660 100644 --- a/docs/search/classes_6.js +++ b/docs/search/classes_6.js @@ -1,5 +1,5 @@ var searchData= [ - ['migrations_228',['Migrations',['../classcrisp_1_1core_1_1_migrations.html',1,'crisp::core']]], - ['mysql_229',['MySQL',['../classcrisp_1_1core_1_1_my_s_q_l.html',1,'crisp::core']]] + ['migrations_229',['Migrations',['../classcrisp_1_1core_1_1_migrations.html',1,'crisp::core']]], + ['mysql_230',['MySQL',['../classcrisp_1_1core_1_1_my_s_q_l.html',1,'crisp::core']]] ]; diff --git a/docs/search/classes_7.js b/docs/search/classes_7.js index d7d2be1e..5f1c4518 100644 --- a/docs/search/classes_7.js +++ b/docs/search/classes_7.js @@ -1,8 +1,8 @@ var searchData= [ - ['phoenix_230',['Phoenix',['../classcrisp_1_1api_1_1_phoenix.html',1,'crisp::api']]], - ['plugin_231',['Plugin',['../classcrisp_1_1core_1_1_plugin.html',1,'crisp::core']]], - ['pluginapi_232',['PluginAPI',['../classcrisp_1_1core_1_1_plugin_a_p_i.html',1,'crisp::core']]], - ['plugins_233',['Plugins',['../classcrisp_1_1core_1_1_plugins.html',1,'crisp::core']]], - ['postgres_234',['Postgres',['../classcrisp_1_1core_1_1_postgres.html',1,'crisp::core']]] + ['phoenix_231',['Phoenix',['../classcrisp_1_1api_1_1_phoenix.html',1,'crisp::api']]], + ['plugin_232',['Plugin',['../classcrisp_1_1core_1_1_plugin.html',1,'crisp::core']]], + ['pluginapi_233',['PluginAPI',['../classcrisp_1_1core_1_1_plugin_a_p_i.html',1,'crisp::core']]], + ['plugins_234',['Plugins',['../classcrisp_1_1core_1_1_plugins.html',1,'crisp::core']]], + ['postgres_235',['Postgres',['../classcrisp_1_1core_1_1_postgres.html',1,'crisp::core']]] ]; diff --git a/docs/search/classes_8.js b/docs/search/classes_8.js index d8ecc2d1..5c03ab35 100644 --- a/docs/search/classes_8.js +++ b/docs/search/classes_8.js @@ -1,4 +1,4 @@ var searchData= [ - ['redis_235',['Redis',['../classcrisp_1_1core_1_1_redis.html',1,'crisp::core']]] + ['redis_236',['Redis',['../classcrisp_1_1core_1_1_redis.html',1,'crisp::core']]] ]; diff --git a/docs/search/classes_9.js b/docs/search/classes_9.js index d7572810..c68883ca 100644 --- a/docs/search/classes_9.js +++ b/docs/search/classes_9.js @@ -1,6 +1,6 @@ var searchData= [ - ['theme_236',['Theme',['../classcrisp_1_1core_1_1_theme.html',1,'crisp::core']]], - ['themes_237',['Themes',['../classcrisp_1_1core_1_1_themes.html',1,'crisp::core']]], - ['translation_238',['Translation',['../classcrisp_1_1api_1_1_translation.html',1,'crisp::api']]] + ['theme_237',['Theme',['../classcrisp_1_1core_1_1_theme.html',1,'crisp::core']]], + ['themes_238',['Themes',['../classcrisp_1_1core_1_1_themes.html',1,'crisp::core']]], + ['translation_239',['Translation',['../classcrisp_1_1api_1_1_translation.html',1,'crisp::api']]] ]; diff --git a/docs/search/classes_a.js b/docs/search/classes_a.js index e95a9443..a01126c6 100644 --- a/docs/search/classes_a.js +++ b/docs/search/classes_a.js @@ -1,4 +1,4 @@ var searchData= [ - ['universe_239',['Universe',['../classcrisp_1_1_universe.html',1,'crisp']]] + ['universe_240',['Universe',['../classcrisp_1_1_universe.html',1,'crisp']]] ]; diff --git a/docs/search/files_0.js b/docs/search/files_0.js index f894db57..4083ff8d 100644 --- a/docs/search/files_0.js +++ b/docs/search/files_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['apistats_2ephp_245',['APIStats.php',['../_a_p_i_stats_8php.html',1,'']]] + ['apistats_2ephp_246',['APIStats.php',['../_a_p_i_stats_8php.html',1,'']]] ]; diff --git a/docs/search/files_1.js b/docs/search/files_1.js index a8b2fc77..a4806030 100644 --- a/docs/search/files_1.js +++ b/docs/search/files_1.js @@ -1,6 +1,6 @@ var searchData= [ - ['config_2ephp_246',['Config.php',['../api_2_config_8php.html',1,'(Global Namespace)'],['../core_2_config_8php.html',1,'(Global Namespace)']]], - ['cron_2ephp_247',['Cron.php',['../_cron_8php.html',1,'']]], - ['crypto_2ephp_248',['Crypto.php',['../_crypto_8php.html',1,'']]] + ['config_2ephp_247',['Config.php',['../api_2_config_8php.html',1,'(Global Namespace)'],['../core_2_config_8php.html',1,'(Global Namespace)']]], + ['cron_2ephp_248',['Cron.php',['../_cron_8php.html',1,'']]], + ['crypto_2ephp_249',['Crypto.php',['../_crypto_8php.html',1,'']]] ]; diff --git a/docs/search/files_2.js b/docs/search/files_2.js index aa6330e0..8c466af1 100644 --- a/docs/search/files_2.js +++ b/docs/search/files_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['dev_2edox_249',['dev.dox',['../dev_8dox.html',1,'']]] + ['dev_2edox_250',['dev.dox',['../dev_8dox.html',1,'']]] ]; diff --git a/docs/search/files_3.js b/docs/search/files_3.js index 43a7ed83..e724d730 100644 --- a/docs/search/files_3.js +++ b/docs/search/files_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['errorreporter_2ephp_250',['ErrorReporter.php',['../_error_reporter_8php.html',1,'']]] + ['errorreporter_2ephp_251',['ErrorReporter.php',['../_error_reporter_8php.html',1,'']]] ]; diff --git a/docs/search/files_4.js b/docs/search/files_4.js index 2f5e9b92..42aba923 100644 --- a/docs/search/files_4.js +++ b/docs/search/files_4.js @@ -1,5 +1,5 @@ var searchData= [ - ['helper_2ephp_251',['Helper.php',['../_helper_8php.html',1,'']]], - ['hook_2ephp_252',['Hook.php',['../_hook_8php.html',1,'']]] + ['helper_2ephp_252',['Helper.php',['../_helper_8php.html',1,'']]], + ['hook_2ephp_253',['Hook.php',['../_hook_8php.html',1,'']]] ]; diff --git a/docs/search/files_5.js b/docs/search/files_5.js index 74d1a52f..82f08aee 100644 --- a/docs/search/files_5.js +++ b/docs/search/files_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['invalidlanguageexception_2ephp_253',['InvalidLanguageException.php',['../_invalid_language_exception_8php.html',1,'']]] + ['invalidlanguageexception_2ephp_254',['InvalidLanguageException.php',['../_invalid_language_exception_8php.html',1,'']]] ]; diff --git a/docs/search/files_6.js b/docs/search/files_6.js index 8f54a03f..665dadac 100644 --- a/docs/search/files_6.js +++ b/docs/search/files_6.js @@ -1,5 +1,5 @@ var searchData= [ - ['language_2ephp_254',['Language.php',['../_language_8php.html',1,'']]], - ['languages_2ephp_255',['Languages.php',['../_languages_8php.html',1,'']]] + ['language_2ephp_255',['Language.php',['../_language_8php.html',1,'']]], + ['languages_2ephp_256',['Languages.php',['../_languages_8php.html',1,'']]] ]; diff --git a/docs/search/files_7.js b/docs/search/files_7.js index ad0c97be..144f3fa9 100644 --- a/docs/search/files_7.js +++ b/docs/search/files_7.js @@ -1,5 +1,5 @@ var searchData= [ - ['migrations_2ephp_256',['Migrations.php',['../_migrations_8php.html',1,'']]], - ['mysql_2ephp_257',['MySQL.php',['../_my_s_q_l_8php.html',1,'']]] + ['migrations_2ephp_257',['Migrations.php',['../_migrations_8php.html',1,'']]], + ['mysql_2ephp_258',['MySQL.php',['../_my_s_q_l_8php.html',1,'']]] ]; diff --git a/docs/search/files_8.js b/docs/search/files_8.js index 671d9503..b88e617b 100644 --- a/docs/search/files_8.js +++ b/docs/search/files_8.js @@ -1,8 +1,8 @@ var searchData= [ - ['phoenix_2ephp_258',['Phoenix.php',['../_phoenix_8php.html',1,'']]], - ['plugin_2ephp_259',['Plugin.php',['../_plugin_8php.html',1,'']]], - ['pluginapi_2ephp_260',['PluginAPI.php',['../_plugin_a_p_i_8php.html',1,'']]], - ['plugins_2ephp_261',['Plugins.php',['../_plugins_8php.html',1,'']]], - ['postgres_2ephp_262',['Postgres.php',['../_postgres_8php.html',1,'']]] + ['phoenix_2ephp_259',['Phoenix.php',['../_phoenix_8php.html',1,'']]], + ['plugin_2ephp_260',['Plugin.php',['../_plugin_8php.html',1,'']]], + ['pluginapi_2ephp_261',['PluginAPI.php',['../_plugin_a_p_i_8php.html',1,'']]], + ['plugins_2ephp_262',['Plugins.php',['../_plugins_8php.html',1,'']]], + ['postgres_2ephp_263',['Postgres.php',['../_postgres_8php.html',1,'']]] ]; diff --git a/docs/search/files_9.js b/docs/search/files_9.js index 10831d66..619e5359 100644 --- a/docs/search/files_9.js +++ b/docs/search/files_9.js @@ -1,4 +1,4 @@ var searchData= [ - ['redis_2ephp_263',['Redis.php',['../_redis_8php.html',1,'']]] + ['redis_2ephp_264',['Redis.php',['../_redis_8php.html',1,'']]] ]; diff --git a/docs/search/files_a.js b/docs/search/files_a.js index f5e0d07d..57b2280c 100644 --- a/docs/search/files_a.js +++ b/docs/search/files_a.js @@ -1,6 +1,6 @@ var searchData= [ - ['theme_2ephp_264',['Theme.php',['../_theme_8php.html',1,'']]], - ['themes_2ephp_265',['Themes.php',['../_themes_8php.html',1,'']]], - ['translation_2ephp_266',['Translation.php',['../_translation_8php.html',1,'']]] + ['theme_2ephp_265',['Theme.php',['../_theme_8php.html',1,'']]], + ['themes_2ephp_266',['Themes.php',['../_themes_8php.html',1,'']]], + ['translation_2ephp_267',['Translation.php',['../_translation_8php.html',1,'']]] ]; diff --git a/docs/search/files_b.js b/docs/search/files_b.js index cd6f08a8..511faed5 100644 --- a/docs/search/files_b.js +++ b/docs/search/files_b.js @@ -1,4 +1,4 @@ var searchData= [ - ['universe_2ephp_267',['Universe.php',['../_universe_8php.html',1,'']]] + ['universe_2ephp_268',['Universe.php',['../_universe_8php.html',1,'']]] ]; diff --git a/docs/search/functions_0.js b/docs/search/functions_0.js index 85e579ba..0cfe6113 100644 --- a/docs/search/functions_0.js +++ b/docs/search/functions_0.js @@ -1,5 +1,5 @@ var searchData= [ - ['_5f_5fconstruct_268',['__construct',['../classcrisp_1_1api_1_1_a_p_i_stats.html#a095c5d389db211932136b53f25f39685',1,'crisp\api\APIStats\__construct()'],['../classcrisp_1_1api_1_1_error_reporter.html#a095c5d389db211932136b53f25f39685',1,'crisp\api\ErrorReporter\__construct()'],['../classcrisp_1_1api_1_1_language.html#af321c9202c0662f71abc86c7217148ef',1,'crisp\api\Language\__construct()'],['../classcrisp_1_1api_1_1lists_1_1_cron.html#a095c5d389db211932136b53f25f39685',1,'crisp\api\lists\Cron\__construct()'],['../classcrisp_1_1api_1_1lists_1_1_languages.html#a095c5d389db211932136b53f25f39685',1,'crisp\api\lists\Languages\__construct()'],['../classcrisp_1_1api_1_1_translation.html#a46268996675a72de8321d16b8e12babd',1,'crisp\api\Translation\__construct()'],['../classcrisp_1_1core_1_1_migrations.html#a095c5d389db211932136b53f25f39685',1,'crisp\core\Migrations\__construct()'],['../classcrisp_1_1core_1_1_my_s_q_l.html#a095c5d389db211932136b53f25f39685',1,'crisp\core\MySQL\__construct()'],['../classcrisp_1_1core_1_1_plugin.html#a297c3bdf0db1041607bd93555af8c1aa',1,'crisp\core\Plugin\__construct()'],['../classcrisp_1_1core_1_1_plugin_a_p_i.html#ac83d27cc2a15d3ba7fa3837e9d256e7c',1,'crisp\core\PluginAPI\__construct()'],['../classcrisp_1_1core_1_1_postgres.html#a095c5d389db211932136b53f25f39685',1,'crisp\core\Postgres\__construct()'],['../classcrisp_1_1core_1_1_redis.html#a095c5d389db211932136b53f25f39685',1,'crisp\core\Redis\__construct()'],['../classcrisp_1_1core_1_1_theme.html#a7ae9824a3811effd16fb2a9e24724cd9',1,'crisp\core\Theme\__construct()'],['../classcrisp_1_1exceptions_1_1_invalid_language_exception.html#a5f9e33d1d744d953abb3ac62cb43ee51',1,'crisp\exceptions\InvalidLanguageException\__construct()']]], - ['_5f_5ftostring_269',['__toString',['../classcrisp_1_1exceptions_1_1_invalid_language_exception.html#a7516ca30af0db3cdbf9a7739b48ce91d',1,'crisp::exceptions::InvalidLanguageException']]] + ['_5f_5fconstruct_269',['__construct',['../classcrisp_1_1api_1_1_a_p_i_stats.html#a095c5d389db211932136b53f25f39685',1,'crisp\api\APIStats\__construct()'],['../classcrisp_1_1api_1_1_error_reporter.html#a095c5d389db211932136b53f25f39685',1,'crisp\api\ErrorReporter\__construct()'],['../classcrisp_1_1api_1_1_language.html#af321c9202c0662f71abc86c7217148ef',1,'crisp\api\Language\__construct()'],['../classcrisp_1_1api_1_1lists_1_1_cron.html#a095c5d389db211932136b53f25f39685',1,'crisp\api\lists\Cron\__construct()'],['../classcrisp_1_1api_1_1lists_1_1_languages.html#a095c5d389db211932136b53f25f39685',1,'crisp\api\lists\Languages\__construct()'],['../classcrisp_1_1api_1_1_translation.html#a46268996675a72de8321d16b8e12babd',1,'crisp\api\Translation\__construct()'],['../classcrisp_1_1core_1_1_migrations.html#a095c5d389db211932136b53f25f39685',1,'crisp\core\Migrations\__construct()'],['../classcrisp_1_1core_1_1_my_s_q_l.html#a095c5d389db211932136b53f25f39685',1,'crisp\core\MySQL\__construct()'],['../classcrisp_1_1core_1_1_plugin.html#a297c3bdf0db1041607bd93555af8c1aa',1,'crisp\core\Plugin\__construct()'],['../classcrisp_1_1core_1_1_plugin_a_p_i.html#ac83d27cc2a15d3ba7fa3837e9d256e7c',1,'crisp\core\PluginAPI\__construct()'],['../classcrisp_1_1core_1_1_postgres.html#a095c5d389db211932136b53f25f39685',1,'crisp\core\Postgres\__construct()'],['../classcrisp_1_1core_1_1_redis.html#a095c5d389db211932136b53f25f39685',1,'crisp\core\Redis\__construct()'],['../classcrisp_1_1core_1_1_theme.html#a7ae9824a3811effd16fb2a9e24724cd9',1,'crisp\core\Theme\__construct()'],['../classcrisp_1_1exceptions_1_1_invalid_language_exception.html#a5f9e33d1d744d953abb3ac62cb43ee51',1,'crisp\exceptions\InvalidLanguageException\__construct()']]], + ['_5f_5ftostring_270',['__toString',['../classcrisp_1_1exceptions_1_1_invalid_language_exception.html#a7516ca30af0db3cdbf9a7739b48ce91d',1,'crisp::exceptions::InvalidLanguageException']]] ]; diff --git a/docs/search/functions_1.js b/docs/search/functions_1.js index 73c9c922..2f8ee9ad 100644 --- a/docs/search/functions_1.js +++ b/docs/search/functions_1.js @@ -1,7 +1,7 @@ var searchData= [ - ['add_270',['add',['../classcrisp_1_1api_1_1_a_p_i_stats.html#a69b9c8e596e88446dbfb0a068963133d',1,'crisp::api::APIStats']]], - ['addcolumn_271',['addColumn',['../classcrisp_1_1core_1_1_migrations.html#aaf75444fcad516385bd1c9106fa03385',1,'crisp::core::Migrations']]], - ['addindex_272',['addIndex',['../classcrisp_1_1core_1_1_migrations.html#a65795769728b3380d3a5979d0edf458b',1,'crisp::core::Migrations']]], - ['addtonavbar_273',['addtoNavbar',['../classcrisp_1_1core_1_1_theme.html#a7338932f48d431138c8f5f7d4f913985',1,'crisp::core::Theme']]] + ['add_271',['add',['../classcrisp_1_1api_1_1_a_p_i_stats.html#a69b9c8e596e88446dbfb0a068963133d',1,'crisp::api::APIStats']]], + ['addcolumn_272',['addColumn',['../classcrisp_1_1core_1_1_migrations.html#aaf75444fcad516385bd1c9106fa03385',1,'crisp::core::Migrations']]], + ['addindex_273',['addIndex',['../classcrisp_1_1core_1_1_migrations.html#a65795769728b3380d3a5979d0edf458b',1,'crisp::core::Migrations']]], + ['addtonavbar_274',['addtoNavbar',['../classcrisp_1_1core_1_1_theme.html#a7338932f48d431138c8f5f7d4f913985',1,'crisp::core::Theme']]] ]; diff --git a/docs/search/functions_10.js b/docs/search/functions_10.js index def578b9..84144bb3 100644 --- a/docs/search/functions_10.js +++ b/docs/search/functions_10.js @@ -1,8 +1,8 @@ var searchData= [ - ['uninstall_406',['uninstall',['../classcrisp_1_1core_1_1_plugin.html#a9db6a246faa6b948911078c4be4445c8',1,'crisp\core\Plugin\uninstall()'],['../classcrisp_1_1core_1_1_plugins.html#a613477d731542ada2effda2624b22baa',1,'crisp\core\Plugins\uninstall()'],['../classcrisp_1_1core_1_1_themes.html#adcf348d20bb3820c303e286eb7897192',1,'crisp\core\Themes\uninstall()']]], - ['uninstallcrons_407',['uninstallCrons',['../classcrisp_1_1core_1_1_plugins.html#a1aed9c205b0d0335408a6aff9199e524',1,'crisp::core::Plugins']]], - ['uninstallkvstorage_408',['uninstallKVStorage',['../classcrisp_1_1core_1_1_plugins.html#ae818c2a7a030c57d7c128b9513174236',1,'crisp\core\Plugins\uninstallKVStorage()'],['../classcrisp_1_1core_1_1_themes.html#a159bed4ed508b144860af6dc60fd4d29',1,'crisp\core\Themes\uninstallKVStorage()']]], - ['uninstalltranslations_409',['uninstallTranslations',['../classcrisp_1_1core_1_1_plugins.html#a5acab9a66f2cdb695f4c73de97c3687e',1,'crisp\core\Plugins\uninstallTranslations()'],['../classcrisp_1_1core_1_1_themes.html#a13d74dc19dc45444508e936768a5ec21',1,'crisp\core\Themes\uninstallTranslations()']]], - ['uuidv4_410',['UUIDv4',['../classcrisp_1_1core_1_1_crypto.html#a74ce280f078249a84c6c4cbe146ddef9',1,'crisp::core::Crypto']]] + ['uninstall_408',['uninstall',['../classcrisp_1_1core_1_1_plugin.html#a9db6a246faa6b948911078c4be4445c8',1,'crisp\core\Plugin\uninstall()'],['../classcrisp_1_1core_1_1_plugins.html#a613477d731542ada2effda2624b22baa',1,'crisp\core\Plugins\uninstall()'],['../classcrisp_1_1core_1_1_themes.html#adcf348d20bb3820c303e286eb7897192',1,'crisp\core\Themes\uninstall()']]], + ['uninstallcrons_409',['uninstallCrons',['../classcrisp_1_1core_1_1_plugins.html#a1aed9c205b0d0335408a6aff9199e524',1,'crisp::core::Plugins']]], + ['uninstallkvstorage_410',['uninstallKVStorage',['../classcrisp_1_1core_1_1_plugins.html#ae818c2a7a030c57d7c128b9513174236',1,'crisp\core\Plugins\uninstallKVStorage()'],['../classcrisp_1_1core_1_1_themes.html#a159bed4ed508b144860af6dc60fd4d29',1,'crisp\core\Themes\uninstallKVStorage()']]], + ['uninstalltranslations_411',['uninstallTranslations',['../classcrisp_1_1core_1_1_plugins.html#a5acab9a66f2cdb695f4c73de97c3687e',1,'crisp\core\Plugins\uninstallTranslations()'],['../classcrisp_1_1core_1_1_themes.html#a13d74dc19dc45444508e936768a5ec21',1,'crisp\core\Themes\uninstallTranslations()']]], + ['uuidv4_412',['UUIDv4',['../classcrisp_1_1core_1_1_crypto.html#a74ce280f078249a84c6c4cbe146ddef9',1,'crisp::core::Crypto']]] ]; diff --git a/docs/search/functions_2.js b/docs/search/functions_2.js index b6811ad5..48fe20dd 100644 --- a/docs/search/functions_2.js +++ b/docs/search/functions_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['begin_274',['begin',['../classcrisp_1_1core_1_1_migrations.html#a3a9793666e688407121d76d3a7e4db5d',1,'crisp::core::Migrations']]] + ['begin_275',['begin',['../classcrisp_1_1core_1_1_migrations.html#a3a9793666e688407121d76d3a7e4db5d',1,'crisp::core::Migrations']]] ]; diff --git a/docs/search/functions_3.js b/docs/search/functions_3.js index 15636c58..24b260c8 100644 --- a/docs/search/functions_3.js +++ b/docs/search/functions_3.js @@ -1,11 +1,11 @@ var searchData= [ - ['changeuniverse_275',['changeUniverse',['../classcrisp_1_1_universe.html#a0159082bd714dcd696108df9bd6202a5',1,'crisp::Universe']]], - ['clearcache_276',['clearCache',['../classcrisp_1_1core_1_1_themes.html#af5b55597bf6435397d8a7f6f6b3a2fbc',1,'crisp::core::Themes']]], - ['create_277',['create',['../classcrisp_1_1api_1_1_config.html#acf2f4907926724154155cf58ff7100c0',1,'crisp\api\Config\create()'],['../classcrisp_1_1api_1_1_error_reporter.html#a3e283448f4a2f3ef7ba2d7b9950efa96',1,'crisp\api\ErrorReporter\create()'],['../classcrisp_1_1api_1_1lists_1_1_cron.html#aa0ee02d788220f00acb4f7ffd9f185e0',1,'crisp\api\lists\Cron\create()'],['../classcrisp_1_1core_1_1_migrations.html#ad1aa7ace9432930c3be64c05f3a0fa67',1,'crisp\core\Migrations\create()']]], - ['createconfig_278',['createConfig',['../classcrisp_1_1core_1_1_plugin.html#a86b4170f77900795764abb63a94efa62',1,'crisp::core::Plugin']]], - ['createcron_279',['createCron',['../classcrisp_1_1core_1_1_plugin.html#aa0bd7b87b2efb856ec51954f8524ea39',1,'crisp::core::Plugin']]], - ['createlanguage_280',['createLanguage',['../classcrisp_1_1api_1_1lists_1_1_languages.html#aead24ecd9aa5e0d43b3c655fe8c4394c',1,'crisp::api::lists::Languages']]], - ['createtable_281',['createTable',['../classcrisp_1_1core_1_1_migrations.html#a770a5ffc1c2d35286bb2afbb17058724',1,'crisp::core::Migrations']]], - ['currentdomain_282',['currentDomain',['../classcrisp_1_1api_1_1_helper.html#ad1ef323912a9c14c9624afb5272960b2',1,'crisp::api::Helper']]] + ['changeuniverse_276',['changeUniverse',['../classcrisp_1_1_universe.html#a0159082bd714dcd696108df9bd6202a5',1,'crisp::Universe']]], + ['clearcache_277',['clearCache',['../classcrisp_1_1core_1_1_themes.html#af5b55597bf6435397d8a7f6f6b3a2fbc',1,'crisp::core::Themes']]], + ['create_278',['create',['../classcrisp_1_1api_1_1_config.html#acf2f4907926724154155cf58ff7100c0',1,'crisp\api\Config\create()'],['../classcrisp_1_1api_1_1_error_reporter.html#a3e283448f4a2f3ef7ba2d7b9950efa96',1,'crisp\api\ErrorReporter\create()'],['../classcrisp_1_1api_1_1lists_1_1_cron.html#aa0ee02d788220f00acb4f7ffd9f185e0',1,'crisp\api\lists\Cron\create()'],['../classcrisp_1_1core_1_1_migrations.html#ad1aa7ace9432930c3be64c05f3a0fa67',1,'crisp\core\Migrations\create()']]], + ['createconfig_279',['createConfig',['../classcrisp_1_1core_1_1_plugin.html#a86b4170f77900795764abb63a94efa62',1,'crisp::core::Plugin']]], + ['createcron_280',['createCron',['../classcrisp_1_1core_1_1_plugin.html#aa0bd7b87b2efb856ec51954f8524ea39',1,'crisp::core::Plugin']]], + ['createlanguage_281',['createLanguage',['../classcrisp_1_1api_1_1lists_1_1_languages.html#aead24ecd9aa5e0d43b3c655fe8c4394c',1,'crisp::api::lists::Languages']]], + ['createtable_282',['createTable',['../classcrisp_1_1core_1_1_migrations.html#a770a5ffc1c2d35286bb2afbb17058724',1,'crisp::core::Migrations']]], + ['currentdomain_283',['currentDomain',['../classcrisp_1_1api_1_1_helper.html#ad1ef323912a9c14c9624afb5272960b2',1,'crisp::api::Helper']]] ]; diff --git a/docs/search/functions_4.js b/docs/search/functions_4.js index 0409e66f..836d3e69 100644 --- a/docs/search/functions_4.js +++ b/docs/search/functions_4.js @@ -1,11 +1,12 @@ var searchData= [ - ['decrypt_283',['decrypt',['../classcrisp_1_1core_1_1_crypto.html#a7c96a9f039748bcdabb4be4eaa0b2aeb',1,'crisp::core::Crypto']]], - ['delete_284',['delete',['../classcrisp_1_1api_1_1_config.html#a42f9afb8c19c0069b6ae47c8b5e25f3b',1,'crisp::api::Config']]], - ['deletebyplugin_285',['deleteByPlugin',['../classcrisp_1_1api_1_1lists_1_1_cron.html#aabeadf89283a0a240b053a62069680fe',1,'crisp::api::lists::Cron']]], - ['deleteconfig_286',['deleteConfig',['../classcrisp_1_1core_1_1_plugin.html#a634c5a35aa0260a186ed21b57f91a8cd',1,'crisp::core::Plugin']]], - ['deletedata_287',['deleteData',['../classcrisp_1_1core_1_1_plugins.html#a29683f4ed4f98a71f97ac46418824404',1,'crisp\core\Plugins\deleteData()'],['../classcrisp_1_1core_1_1_themes.html#a9cc2e74aa61359d970837e0b91e5099c',1,'crisp\core\Themes\deleteData()']]], - ['deleteold_288',['deleteOld',['../classcrisp_1_1api_1_1lists_1_1_cron.html#aaa61a9dcc03e0b7e8aac8b350c08bae9',1,'crisp::api::lists::Cron']]], - ['deletetranslation_289',['deleteTranslation',['../classcrisp_1_1api_1_1_language.html#a18d75736fd69bbba84ba5aa75fb702a2',1,'crisp::api::Language']]], - ['disable_290',['disable',['../classcrisp_1_1api_1_1_language.html#a545341e59cc9a0dafc4e265d60d4b5d6',1,'crisp::api::Language']]] + ['decrypt_284',['decrypt',['../classcrisp_1_1core_1_1_crypto.html#a7c96a9f039748bcdabb4be4eaa0b2aeb',1,'crisp::core::Crypto']]], + ['delete_285',['delete',['../classcrisp_1_1api_1_1_config.html#a42f9afb8c19c0069b6ae47c8b5e25f3b',1,'crisp::api::Config']]], + ['deletebyplugin_286',['deleteByPlugin',['../classcrisp_1_1api_1_1lists_1_1_cron.html#aabeadf89283a0a240b053a62069680fe',1,'crisp::api::lists::Cron']]], + ['deleteconfig_287',['deleteConfig',['../classcrisp_1_1core_1_1_plugin.html#a634c5a35aa0260a186ed21b57f91a8cd',1,'crisp::core::Plugin']]], + ['deletedata_288',['deleteData',['../classcrisp_1_1core_1_1_plugins.html#a29683f4ed4f98a71f97ac46418824404',1,'crisp\core\Plugins\deleteData()'],['../classcrisp_1_1core_1_1_themes.html#a9cc2e74aa61359d970837e0b91e5099c',1,'crisp\core\Themes\deleteData()']]], + ['deleteold_289',['deleteOld',['../classcrisp_1_1api_1_1lists_1_1_cron.html#aaa61a9dcc03e0b7e8aac8b350c08bae9',1,'crisp::api::lists::Cron']]], + ['deletetranslation_290',['deleteTranslation',['../classcrisp_1_1api_1_1_language.html#a18d75736fd69bbba84ba5aa75fb702a2',1,'crisp::api::Language']]], + ['disable_291',['disable',['../classcrisp_1_1api_1_1_language.html#a545341e59cc9a0dafc4e265d60d4b5d6',1,'crisp::api::Language']]], + ['dropcolumn_292',['dropColumn',['../classcrisp_1_1core_1_1_migrations.html#a4d830d14a586e54da90d752e2fda8d0c',1,'crisp::core::Migrations']]] ]; diff --git a/docs/search/functions_5.js b/docs/search/functions_5.js index cab894db..923f73e9 100644 --- a/docs/search/functions_5.js +++ b/docs/search/functions_5.js @@ -1,9 +1,9 @@ var searchData= [ - ['edittranslation_291',['editTranslation',['../classcrisp_1_1api_1_1_language.html#adfee32e203d4024721d158c5a2dba786',1,'crisp::api::Language']]], - ['enable_292',['enable',['../classcrisp_1_1api_1_1_language.html#a91e658a6e3fccc3028f2d71122bc4b8f',1,'crisp::api::Language']]], - ['encrypt_293',['encrypt',['../classcrisp_1_1core_1_1_crypto.html#a638285d91f747220bcb45ae382bd9313',1,'crisp::core::Crypto']]], - ['end_294',['end',['../classcrisp_1_1core_1_1_migrations.html#a817082ace0e2589d27b22890290aa4a9',1,'crisp::core::Migrations']]], - ['endswith_295',['endsWith',['../classcrisp_1_1api_1_1_helper.html#a2549562216f3498de2fb3645a6fb10e0',1,'crisp::api::Helper']]], - ['exists_296',['exists',['../classcrisp_1_1api_1_1_a_p_i_stats.html#a337c4ac8bbd8e330a96e22aba11c9777',1,'crisp\api\APIStats\exists()'],['../classcrisp_1_1api_1_1_config.html#a89c8217b558fda742458fa481af0a883',1,'crisp\api\Config\exists()'],['../classcrisp_1_1api_1_1_language.html#ac2f864b72dc2f778e68ad96364c48c5e',1,'crisp\api\Language\exists()'],['../classcrisp_1_1api_1_1_translation.html#a89c8217b558fda742458fa481af0a883',1,'crisp\api\Translation\exists()']]] + ['edittranslation_293',['editTranslation',['../classcrisp_1_1api_1_1_language.html#adfee32e203d4024721d158c5a2dba786',1,'crisp::api::Language']]], + ['enable_294',['enable',['../classcrisp_1_1api_1_1_language.html#a91e658a6e3fccc3028f2d71122bc4b8f',1,'crisp::api::Language']]], + ['encrypt_295',['encrypt',['../classcrisp_1_1core_1_1_crypto.html#a638285d91f747220bcb45ae382bd9313',1,'crisp::core::Crypto']]], + ['end_296',['end',['../classcrisp_1_1core_1_1_migrations.html#a817082ace0e2589d27b22890290aa4a9',1,'crisp::core::Migrations']]], + ['endswith_297',['endsWith',['../classcrisp_1_1api_1_1_helper.html#a2549562216f3498de2fb3645a6fb10e0',1,'crisp::api::Helper']]], + ['exists_298',['exists',['../classcrisp_1_1api_1_1_a_p_i_stats.html#a337c4ac8bbd8e330a96e22aba11c9777',1,'crisp\api\APIStats\exists()'],['../classcrisp_1_1api_1_1_config.html#a89c8217b558fda742458fa481af0a883',1,'crisp\api\Config\exists()'],['../classcrisp_1_1api_1_1_language.html#ac2f864b72dc2f778e68ad96364c48c5e',1,'crisp\api\Language\exists()'],['../classcrisp_1_1api_1_1_translation.html#a89c8217b558fda742458fa481af0a883',1,'crisp\api\Translation\exists()']]] ]; diff --git a/docs/search/functions_6.js b/docs/search/functions_6.js index e7fc6442..de7061f0 100644 --- a/docs/search/functions_6.js +++ b/docs/search/functions_6.js @@ -1,10 +1,10 @@ var searchData= [ - ['fetch_297',['fetch',['../classcrisp_1_1api_1_1_language.html#ae48cc10bd727774bb36203986ce3b176',1,'crisp\api\Language\fetch()'],['../classcrisp_1_1api_1_1lists_1_1_cron.html#adfa7dd3ab32ebe9d6ee568f2e8312b0a',1,'crisp\api\lists\Cron\fetch()'],['../classcrisp_1_1api_1_1_translation.html#a45c1950490be805de24501b6493167b4',1,'crisp\api\Translation\fetch()']]], - ['fetchall_298',['fetchAll',['../classcrisp_1_1api_1_1lists_1_1_cron.html#aea8e7edb8a7eccf11279bcd57ccd8286',1,'crisp\api\lists\Cron\fetchAll()'],['../classcrisp_1_1api_1_1_translation.html#ae34d4fd9564440f5c5c7c905009f6958',1,'crisp\api\Translation\fetchAll()']]], - ['fetchallbykey_299',['fetchAllByKey',['../classcrisp_1_1api_1_1_translation.html#ae232e62d02f091173b31b87cd82ec90a',1,'crisp::api::Translation']]], - ['fetchlanguages_300',['fetchLanguages',['../classcrisp_1_1api_1_1lists_1_1_languages.html#a42058cdda12f0f8ffe5773e981dc78af',1,'crisp::api::lists::Languages']]], - ['fetchunprocessed_301',['fetchUnprocessed',['../classcrisp_1_1api_1_1lists_1_1_cron.html#a17e71d5f542253cdb7a52110601309b2',1,'crisp::api::lists::Cron']]], - ['fetchunprocessedschedule_302',['fetchUnprocessedSchedule',['../classcrisp_1_1api_1_1lists_1_1_cron.html#afedb5ffaa711da00b57c4ff0f99f1e2b',1,'crisp::api::lists::Cron']]], - ['filteralphanum_303',['filterAlphaNum',['../classcrisp_1_1api_1_1_helper.html#a1003c6b3b59a848fe367dd5543130318',1,'crisp::api::Helper']]] + ['fetch_299',['fetch',['../classcrisp_1_1api_1_1_language.html#ae48cc10bd727774bb36203986ce3b176',1,'crisp\api\Language\fetch()'],['../classcrisp_1_1api_1_1lists_1_1_cron.html#adfa7dd3ab32ebe9d6ee568f2e8312b0a',1,'crisp\api\lists\Cron\fetch()'],['../classcrisp_1_1api_1_1_translation.html#a45c1950490be805de24501b6493167b4',1,'crisp\api\Translation\fetch()']]], + ['fetchall_300',['fetchAll',['../classcrisp_1_1api_1_1lists_1_1_cron.html#aea8e7edb8a7eccf11279bcd57ccd8286',1,'crisp\api\lists\Cron\fetchAll()'],['../classcrisp_1_1api_1_1_translation.html#ae34d4fd9564440f5c5c7c905009f6958',1,'crisp\api\Translation\fetchAll()']]], + ['fetchallbykey_301',['fetchAllByKey',['../classcrisp_1_1api_1_1_translation.html#ae232e62d02f091173b31b87cd82ec90a',1,'crisp::api::Translation']]], + ['fetchlanguages_302',['fetchLanguages',['../classcrisp_1_1api_1_1lists_1_1_languages.html#a42058cdda12f0f8ffe5773e981dc78af',1,'crisp::api::lists::Languages']]], + ['fetchunprocessed_303',['fetchUnprocessed',['../classcrisp_1_1api_1_1lists_1_1_cron.html#a17e71d5f542253cdb7a52110601309b2',1,'crisp::api::lists::Cron']]], + ['fetchunprocessedschedule_304',['fetchUnprocessedSchedule',['../classcrisp_1_1api_1_1lists_1_1_cron.html#afedb5ffaa711da00b57c4ff0f99f1e2b',1,'crisp::api::lists::Cron']]], + ['filteralphanum_305',['filterAlphaNum',['../classcrisp_1_1api_1_1_helper.html#a1003c6b3b59a848fe367dd5543130318',1,'crisp::api::Helper']]] ]; diff --git a/docs/search/functions_7.js b/docs/search/functions_7.js index a7f617ac..59683745 100644 --- a/docs/search/functions_7.js +++ b/docs/search/functions_7.js @@ -1,45 +1,45 @@ var searchData= [ - ['generateapifiles_304',['generateApiFiles',['../classcrisp_1_1api_1_1_phoenix.html#aaadb766fd8e5b0c20c0eeec4e8c0b3d5',1,'crisp::api::Phoenix']]], - ['get_305',['get',['../classcrisp_1_1api_1_1_a_p_i_stats.html#a430fe7b6f483eba7c36e22e37f79cadf',1,'crisp\api\APIStats\get()'],['../classcrisp_1_1api_1_1_config.html#ac25f6d0b3db3854589ff1929302dbfdb',1,'crisp\api\Config\get()'],['../classcrisp_1_1api_1_1_translation.html#a44e8a2189b75d0f8aabd31031893cb53',1,'crisp\api\Translation\get()']]], - ['getcase_306',['getCase',['../classcrisp_1_1api_1_1_phoenix.html#a724f217ac1171fcf5e1b903c24d00e2e',1,'crisp::api::Phoenix']]], - ['getcasepg_307',['getCasePG',['../classcrisp_1_1api_1_1_phoenix.html#a5f1943be4038d4c82fa02ae36809b865',1,'crisp::api::Phoenix']]], - ['getcases_308',['getCases',['../classcrisp_1_1api_1_1_phoenix.html#aa507a99cf4e900d60d46b4a44f7d6ba1',1,'crisp::api::Phoenix']]], - ['getcasespg_309',['getCasesPG',['../classcrisp_1_1api_1_1_phoenix.html#a8e1fd73aaa6220827e8ccd7c8818c385',1,'crisp::api::Phoenix']]], - ['getcode_310',['getCode',['../classcrisp_1_1api_1_1_language.html#ab5e24da53b4a0d0848b18c1e832f47ff',1,'crisp::api::Language']]], - ['getconfig_311',['getConfig',['../classcrisp_1_1core_1_1_plugin.html#a8282f5153adc3ed0d4c94e959530a4d3',1,'crisp::core::Plugin']]], - ['getdbconnector_312',['getDBConnector',['../classcrisp_1_1core_1_1_my_s_q_l.html#a7ef42b56201d7af4fc2d1c38ab6c7f27',1,'crisp\core\MySQL\getDBConnector()'],['../classcrisp_1_1core_1_1_postgres.html#a7ef42b56201d7af4fc2d1c38ab6c7f27',1,'crisp\core\Postgres\getDBConnector()'],['../classcrisp_1_1core_1_1_redis.html#a7ef42b56201d7af4fc2d1c38ab6c7f27',1,'crisp\core\Redis\getDBConnector()']]], - ['getdocumentsbyservicepg_313',['getDocumentsByServicePG',['../classcrisp_1_1api_1_1_phoenix.html#a32e95fd68045cd95203727e9f03acd62',1,'crisp::api::Phoenix']]], - ['getflag_314',['getFlag',['../classcrisp_1_1api_1_1_language.html#a381de5803b7657f165a06185c38deec1',1,'crisp::api::Language']]], - ['getgitbranch_315',['getGitBranch',['../classcrisp_1_1api_1_1_helper.html#a007ceae8b446fcd12ebcf321b3b35696',1,'crisp::api::Helper']]], - ['getgitrevision_316',['getGitRevision',['../classcrisp_1_1api_1_1_helper.html#abbda27f7d9e553bd881b5dd5e98bb1ae',1,'crisp::api::Helper']]], - ['getgitrevisionlink_317',['getGitRevisionLink',['../classcrisp_1_1api_1_1_helper.html#ac529e02361290ca584e1132b45bad572',1,'crisp::api::Helper']]], - ['getlanguagebycode_318',['getLanguageByCode',['../classcrisp_1_1api_1_1lists_1_1_languages.html#aff95299f239623b016ba91b491562416',1,'crisp::api::lists::Languages']]], - ['getlanguagebyid_319',['getLanguageByID',['../classcrisp_1_1api_1_1lists_1_1_languages.html#a49ca481d49201e48422674385d93aee7',1,'crisp::api::lists::Languages']]], - ['getlatestgitrevision_320',['getLatestGitRevision',['../classcrisp_1_1api_1_1_helper.html#afc19cc5a7636ad6cfc2025ea9e39ba42',1,'crisp::api::Helper']]], - ['getlocale_321',['getLocale',['../classcrisp_1_1api_1_1_helper.html#a7166a1dbef39ee5a6bcabf6bca93a654',1,'crisp::api::Helper']]], - ['getname_322',['getName',['../classcrisp_1_1api_1_1_language.html#a3d0963e68bb313b163a73f2803c64600',1,'crisp::api::Language']]], - ['getnativename_323',['getNativeName',['../classcrisp_1_1api_1_1_language.html#a288c91ba56af1e2a57e48043d799d529',1,'crisp::api::Language']]], - ['getpluginmetadata_324',['getPluginMetadata',['../classcrisp_1_1core_1_1_plugins.html#ada6a43ee2838264612e62ae839d85ded',1,'crisp::core::Plugins']]], - ['getplural_325',['getPlural',['../classcrisp_1_1api_1_1_translation.html#ab2063d37e3d4ab58f0368d2297b54880',1,'crisp::api::Translation']]], - ['getpoint_326',['getPoint',['../classcrisp_1_1api_1_1_phoenix.html#a1e45c2139fdbbd21a908e33d30b8bdfd',1,'crisp::api::Phoenix']]], - ['getpointpg_327',['getPointPG',['../classcrisp_1_1api_1_1_phoenix.html#a1811d85842a29c8625f9c0e159b0e7d9',1,'crisp::api::Phoenix']]], - ['getpointsbyservicepg_328',['getPointsByServicePG',['../classcrisp_1_1api_1_1_phoenix.html#a147f6252d6b9fa95ecceeca569e71af8',1,'crisp::api::Phoenix']]], - ['getrealipaddr_329',['getRealIpAddr',['../classcrisp_1_1api_1_1_helper.html#a00ef592f6ce6b745b63930b8e979aab9',1,'crisp::api::Helper']]], - ['getservice_330',['getService',['../classcrisp_1_1api_1_1_phoenix.html#aa259206b079662ae55d81d666630facb',1,'crisp::api::Phoenix']]], - ['getservicebyname_331',['getServiceByName',['../classcrisp_1_1api_1_1_phoenix.html#ac29e6de4243d250fff6602d24699d71a',1,'crisp::api::Phoenix']]], - ['getservicebynamepg_332',['getServiceByNamePG',['../classcrisp_1_1api_1_1_phoenix.html#afd61521a46e832bc21ae3c8452ecb872',1,'crisp::api::Phoenix']]], - ['getservicebyslugpg_333',['getServiceBySlugPG',['../classcrisp_1_1api_1_1_phoenix.html#a06daeb1064d4d3f357a2a091f0d29f10',1,'crisp::api::Phoenix']]], - ['getservicepg_334',['getServicePG',['../classcrisp_1_1api_1_1_phoenix.html#a00750862c82bf4ad292cbe9d2b918433',1,'crisp::api::Phoenix']]], - ['getservices_335',['getServices',['../classcrisp_1_1api_1_1_phoenix.html#a9922d793e807a52de6d5abecbbed7596',1,'crisp::api::Phoenix']]], - ['getservicespg_336',['getServicesPG',['../classcrisp_1_1api_1_1_phoenix.html#ac6414db18414448c2fadb9748ef914c9',1,'crisp::api::Phoenix']]], - ['getthememetadata_337',['getThemeMetadata',['../classcrisp_1_1core_1_1_themes.html#a37a6d17f622c3303b77d1a38d89cd65c',1,'crisp::core::Themes']]], - ['gettimestamp_338',['getTimestamp',['../classcrisp_1_1api_1_1_config.html#a08c080a39848c73bf9fd57e436cafb68',1,'crisp::api::Config']]], - ['gettopic_339',['getTopic',['../classcrisp_1_1api_1_1_phoenix.html#a56a5993963ab46ec9175e100af18c97b',1,'crisp::api::Phoenix']]], - ['gettopicpg_340',['getTopicPG',['../classcrisp_1_1api_1_1_phoenix.html#a5f4a11325bfb46ee3d7bf51274e71ff7',1,'crisp::api::Phoenix']]], - ['gettopics_341',['getTopics',['../classcrisp_1_1api_1_1_phoenix.html#a7a119c40f9f615124308f366b2794825',1,'crisp::api::Phoenix']]], - ['gettopicspg_342',['getTopicsPG',['../classcrisp_1_1api_1_1_phoenix.html#a80700efc8413a338cd2b95ffffde8eb5',1,'crisp::api::Phoenix']]], - ['gettranslation_343',['getTranslation',['../classcrisp_1_1core_1_1_plugin.html#ae1df982546ea19c3dc1eeef1e4f7b510',1,'crisp::core::Plugin']]], - ['getuniverse_344',['getUniverse',['../classcrisp_1_1_universe.html#af079f02cc5e5526594349c1b26c1cd76',1,'crisp::Universe']]], - ['getuniversename_345',['getUniverseName',['../classcrisp_1_1_universe.html#a18e1cf7456afe0c3bd872ebeb0e1869c',1,'crisp::Universe']]] + ['generateapifiles_306',['generateApiFiles',['../classcrisp_1_1api_1_1_phoenix.html#aaadb766fd8e5b0c20c0eeec4e8c0b3d5',1,'crisp::api::Phoenix']]], + ['get_307',['get',['../classcrisp_1_1api_1_1_a_p_i_stats.html#a430fe7b6f483eba7c36e22e37f79cadf',1,'crisp\api\APIStats\get()'],['../classcrisp_1_1api_1_1_config.html#ac25f6d0b3db3854589ff1929302dbfdb',1,'crisp\api\Config\get()'],['../classcrisp_1_1api_1_1_translation.html#a44e8a2189b75d0f8aabd31031893cb53',1,'crisp\api\Translation\get()']]], + ['getcase_308',['getCase',['../classcrisp_1_1api_1_1_phoenix.html#a724f217ac1171fcf5e1b903c24d00e2e',1,'crisp::api::Phoenix']]], + ['getcasepg_309',['getCasePG',['../classcrisp_1_1api_1_1_phoenix.html#a5f1943be4038d4c82fa02ae36809b865',1,'crisp::api::Phoenix']]], + ['getcases_310',['getCases',['../classcrisp_1_1api_1_1_phoenix.html#aa507a99cf4e900d60d46b4a44f7d6ba1',1,'crisp::api::Phoenix']]], + ['getcasespg_311',['getCasesPG',['../classcrisp_1_1api_1_1_phoenix.html#a8e1fd73aaa6220827e8ccd7c8818c385',1,'crisp::api::Phoenix']]], + ['getcode_312',['getCode',['../classcrisp_1_1api_1_1_language.html#ab5e24da53b4a0d0848b18c1e832f47ff',1,'crisp::api::Language']]], + ['getconfig_313',['getConfig',['../classcrisp_1_1core_1_1_plugin.html#a8282f5153adc3ed0d4c94e959530a4d3',1,'crisp::core::Plugin']]], + ['getdbconnector_314',['getDBConnector',['../classcrisp_1_1core_1_1_my_s_q_l.html#a7ef42b56201d7af4fc2d1c38ab6c7f27',1,'crisp\core\MySQL\getDBConnector()'],['../classcrisp_1_1core_1_1_postgres.html#a7ef42b56201d7af4fc2d1c38ab6c7f27',1,'crisp\core\Postgres\getDBConnector()'],['../classcrisp_1_1core_1_1_redis.html#a7ef42b56201d7af4fc2d1c38ab6c7f27',1,'crisp\core\Redis\getDBConnector()']]], + ['getdocumentsbyservicepg_315',['getDocumentsByServicePG',['../classcrisp_1_1api_1_1_phoenix.html#a32e95fd68045cd95203727e9f03acd62',1,'crisp::api::Phoenix']]], + ['getflag_316',['getFlag',['../classcrisp_1_1api_1_1_language.html#a381de5803b7657f165a06185c38deec1',1,'crisp::api::Language']]], + ['getgitbranch_317',['getGitBranch',['../classcrisp_1_1api_1_1_helper.html#a007ceae8b446fcd12ebcf321b3b35696',1,'crisp::api::Helper']]], + ['getgitrevision_318',['getGitRevision',['../classcrisp_1_1api_1_1_helper.html#abbda27f7d9e553bd881b5dd5e98bb1ae',1,'crisp::api::Helper']]], + ['getgitrevisionlink_319',['getGitRevisionLink',['../classcrisp_1_1api_1_1_helper.html#ac529e02361290ca584e1132b45bad572',1,'crisp::api::Helper']]], + ['getlanguagebycode_320',['getLanguageByCode',['../classcrisp_1_1api_1_1lists_1_1_languages.html#aff95299f239623b016ba91b491562416',1,'crisp::api::lists::Languages']]], + ['getlanguagebyid_321',['getLanguageByID',['../classcrisp_1_1api_1_1lists_1_1_languages.html#a49ca481d49201e48422674385d93aee7',1,'crisp::api::lists::Languages']]], + ['getlatestgitrevision_322',['getLatestGitRevision',['../classcrisp_1_1api_1_1_helper.html#afc19cc5a7636ad6cfc2025ea9e39ba42',1,'crisp::api::Helper']]], + ['getlocale_323',['getLocale',['../classcrisp_1_1api_1_1_helper.html#a7166a1dbef39ee5a6bcabf6bca93a654',1,'crisp::api::Helper']]], + ['getname_324',['getName',['../classcrisp_1_1api_1_1_language.html#a3d0963e68bb313b163a73f2803c64600',1,'crisp::api::Language']]], + ['getnativename_325',['getNativeName',['../classcrisp_1_1api_1_1_language.html#a288c91ba56af1e2a57e48043d799d529',1,'crisp::api::Language']]], + ['getpluginmetadata_326',['getPluginMetadata',['../classcrisp_1_1core_1_1_plugins.html#ada6a43ee2838264612e62ae839d85ded',1,'crisp::core::Plugins']]], + ['getplural_327',['getPlural',['../classcrisp_1_1api_1_1_translation.html#ab2063d37e3d4ab58f0368d2297b54880',1,'crisp::api::Translation']]], + ['getpoint_328',['getPoint',['../classcrisp_1_1api_1_1_phoenix.html#a1e45c2139fdbbd21a908e33d30b8bdfd',1,'crisp::api::Phoenix']]], + ['getpointpg_329',['getPointPG',['../classcrisp_1_1api_1_1_phoenix.html#a1811d85842a29c8625f9c0e159b0e7d9',1,'crisp::api::Phoenix']]], + ['getpointsbyservicepg_330',['getPointsByServicePG',['../classcrisp_1_1api_1_1_phoenix.html#a147f6252d6b9fa95ecceeca569e71af8',1,'crisp::api::Phoenix']]], + ['getrealipaddr_331',['getRealIpAddr',['../classcrisp_1_1api_1_1_helper.html#a00ef592f6ce6b745b63930b8e979aab9',1,'crisp::api::Helper']]], + ['getservice_332',['getService',['../classcrisp_1_1api_1_1_phoenix.html#aa259206b079662ae55d81d666630facb',1,'crisp::api::Phoenix']]], + ['getservicebyname_333',['getServiceByName',['../classcrisp_1_1api_1_1_phoenix.html#ac29e6de4243d250fff6602d24699d71a',1,'crisp::api::Phoenix']]], + ['getservicebynamepg_334',['getServiceByNamePG',['../classcrisp_1_1api_1_1_phoenix.html#afd61521a46e832bc21ae3c8452ecb872',1,'crisp::api::Phoenix']]], + ['getservicebyslugpg_335',['getServiceBySlugPG',['../classcrisp_1_1api_1_1_phoenix.html#a06daeb1064d4d3f357a2a091f0d29f10',1,'crisp::api::Phoenix']]], + ['getservicepg_336',['getServicePG',['../classcrisp_1_1api_1_1_phoenix.html#a00750862c82bf4ad292cbe9d2b918433',1,'crisp::api::Phoenix']]], + ['getservices_337',['getServices',['../classcrisp_1_1api_1_1_phoenix.html#a9922d793e807a52de6d5abecbbed7596',1,'crisp::api::Phoenix']]], + ['getservicespg_338',['getServicesPG',['../classcrisp_1_1api_1_1_phoenix.html#ac6414db18414448c2fadb9748ef914c9',1,'crisp::api::Phoenix']]], + ['getthememetadata_339',['getThemeMetadata',['../classcrisp_1_1core_1_1_themes.html#a37a6d17f622c3303b77d1a38d89cd65c',1,'crisp::core::Themes']]], + ['gettimestamp_340',['getTimestamp',['../classcrisp_1_1api_1_1_config.html#a08c080a39848c73bf9fd57e436cafb68',1,'crisp::api::Config']]], + ['gettopic_341',['getTopic',['../classcrisp_1_1api_1_1_phoenix.html#a56a5993963ab46ec9175e100af18c97b',1,'crisp::api::Phoenix']]], + ['gettopicpg_342',['getTopicPG',['../classcrisp_1_1api_1_1_phoenix.html#a5f4a11325bfb46ee3d7bf51274e71ff7',1,'crisp::api::Phoenix']]], + ['gettopics_343',['getTopics',['../classcrisp_1_1api_1_1_phoenix.html#a7a119c40f9f615124308f366b2794825',1,'crisp::api::Phoenix']]], + ['gettopicspg_344',['getTopicsPG',['../classcrisp_1_1api_1_1_phoenix.html#a80700efc8413a338cd2b95ffffde8eb5',1,'crisp::api::Phoenix']]], + ['gettranslation_345',['getTranslation',['../classcrisp_1_1core_1_1_plugin.html#ae1df982546ea19c3dc1eeef1e4f7b510',1,'crisp::core::Plugin']]], + ['getuniverse_346',['getUniverse',['../classcrisp_1_1_universe.html#af079f02cc5e5526594349c1b26c1cd76',1,'crisp::Universe']]], + ['getuniversename_347',['getUniverseName',['../classcrisp_1_1_universe.html#a18e1cf7456afe0c3bd872ebeb0e1869c',1,'crisp::Universe']]] ]; diff --git a/docs/search/functions_8.js b/docs/search/functions_8.js index a193ec30..31ed6d79 100644 --- a/docs/search/functions_8.js +++ b/docs/search/functions_8.js @@ -1,17 +1,17 @@ var searchData= [ - ['initdb_346',['initDB',['../classcrisp_1_1api_1_1_a_p_i_stats.html#ae5e7eb4ea0667dc07287aebd28e246c3',1,'crisp\api\APIStats\initDB()'],['../classcrisp_1_1api_1_1_error_reporter.html#ae5e7eb4ea0667dc07287aebd28e246c3',1,'crisp\api\ErrorReporter\initDB()']]], - ['install_347',['install',['../classcrisp_1_1core_1_1_plugins.html#ab0d93f988b65a197949370f45c0c2f02',1,'crisp\core\Plugins\install()'],['../classcrisp_1_1core_1_1_themes.html#aa5bd40c23d346dcb833357d2ed98f091',1,'crisp\core\Themes\install()']]], - ['installcrons_348',['installCrons',['../classcrisp_1_1core_1_1_plugins.html#a3e59fae12627421061e134a4867d8a94',1,'crisp::core::Plugins']]], - ['installkvstorage_349',['installKVStorage',['../classcrisp_1_1core_1_1_plugins.html#ae7c5f630440464d4ab8988d3e3adf677',1,'crisp\core\Plugins\installKVStorage()'],['../classcrisp_1_1core_1_1_themes.html#a064611c216c0f5100782b90cb17cb8a9',1,'crisp\core\Themes\installKVStorage()']]], - ['installtranslations_350',['installTranslations',['../classcrisp_1_1core_1_1_plugins.html#a75d4b26c12211dd6f0dc42a2c8f89b3b',1,'crisp\core\Plugins\installTranslations()'],['../classcrisp_1_1core_1_1_themes.html#ac422fbc78b75a974f25707791aa36209',1,'crisp\core\Themes\installTranslations()']]], - ['integrity_351',['integrity',['../classcrisp_1_1core_1_1_plugin.html#af50504b641965128314e7ef746003788',1,'crisp::core::Plugin']]], - ['integritycheck_352',['integrityCheck',['../classcrisp_1_1core_1_1_plugins.html#a0d638cee53d7dcb4dd82f1efeb084361',1,'crisp::core::Plugins']]], - ['isenabled_353',['isEnabled',['../classcrisp_1_1api_1_1_language.html#ad734dc60b64a242fe183e0c23b192790',1,'crisp::api::Language']]], - ['isinstalled_354',['isInstalled',['../classcrisp_1_1core_1_1_plugins.html#a9922f40b72212730c4cf639f50e3e364',1,'crisp\core\Plugins\isInstalled()'],['../classcrisp_1_1core_1_1_themes.html#a1a4228cf190e918d2866ff4dbe140b23',1,'crisp\core\Themes\isInstalled()']]], - ['ismigrated_355',['isMigrated',['../classcrisp_1_1core_1_1_migrations.html#a7d4938c0383aad97545a1f62a8299b4b',1,'crisp::core::Migrations']]], - ['ismobile_356',['isMobile',['../classcrisp_1_1api_1_1_helper.html#af18fc91684720f67c66e9c92a38f8bb8',1,'crisp::api::Helper']]], - ['isserialized_357',['isSerialized',['../classcrisp_1_1api_1_1_helper.html#a0dde52b6a2dcbaea2d84f2bc6d4587cf',1,'crisp::api::Helper']]], - ['isvalid_358',['isValid',['../classcrisp_1_1core_1_1_plugins.html#a71a6bc758b558608ae0e6fe42ff7f8d0',1,'crisp\core\Plugins\isValid()'],['../classcrisp_1_1core_1_1_themes.html#abe1261c8e4b87a0974b7b065ff59c4a6',1,'crisp\core\Themes\isValid()']]], - ['isvalidpluginname_359',['isValidPluginName',['../classcrisp_1_1api_1_1_helper.html#a1eb52876ddcb2571c5cd891ed1d46695',1,'crisp::api::Helper']]] + ['initdb_348',['initDB',['../classcrisp_1_1api_1_1_a_p_i_stats.html#ae5e7eb4ea0667dc07287aebd28e246c3',1,'crisp\api\APIStats\initDB()'],['../classcrisp_1_1api_1_1_error_reporter.html#ae5e7eb4ea0667dc07287aebd28e246c3',1,'crisp\api\ErrorReporter\initDB()']]], + ['install_349',['install',['../classcrisp_1_1core_1_1_plugins.html#ab0d93f988b65a197949370f45c0c2f02',1,'crisp\core\Plugins\install()'],['../classcrisp_1_1core_1_1_themes.html#aa5bd40c23d346dcb833357d2ed98f091',1,'crisp\core\Themes\install()']]], + ['installcrons_350',['installCrons',['../classcrisp_1_1core_1_1_plugins.html#a3e59fae12627421061e134a4867d8a94',1,'crisp::core::Plugins']]], + ['installkvstorage_351',['installKVStorage',['../classcrisp_1_1core_1_1_plugins.html#ae7c5f630440464d4ab8988d3e3adf677',1,'crisp\core\Plugins\installKVStorage()'],['../classcrisp_1_1core_1_1_themes.html#a064611c216c0f5100782b90cb17cb8a9',1,'crisp\core\Themes\installKVStorage()']]], + ['installtranslations_352',['installTranslations',['../classcrisp_1_1core_1_1_plugins.html#a75d4b26c12211dd6f0dc42a2c8f89b3b',1,'crisp\core\Plugins\installTranslations()'],['../classcrisp_1_1core_1_1_themes.html#ac422fbc78b75a974f25707791aa36209',1,'crisp\core\Themes\installTranslations()']]], + ['integrity_353',['integrity',['../classcrisp_1_1core_1_1_plugin.html#af50504b641965128314e7ef746003788',1,'crisp::core::Plugin']]], + ['integritycheck_354',['integrityCheck',['../classcrisp_1_1core_1_1_plugins.html#a0d638cee53d7dcb4dd82f1efeb084361',1,'crisp::core::Plugins']]], + ['isenabled_355',['isEnabled',['../classcrisp_1_1api_1_1_language.html#ad734dc60b64a242fe183e0c23b192790',1,'crisp::api::Language']]], + ['isinstalled_356',['isInstalled',['../classcrisp_1_1core_1_1_plugins.html#a9922f40b72212730c4cf639f50e3e364',1,'crisp\core\Plugins\isInstalled()'],['../classcrisp_1_1core_1_1_themes.html#a1a4228cf190e918d2866ff4dbe140b23',1,'crisp\core\Themes\isInstalled()']]], + ['ismigrated_357',['isMigrated',['../classcrisp_1_1core_1_1_migrations.html#a7d4938c0383aad97545a1f62a8299b4b',1,'crisp::core::Migrations']]], + ['ismobile_358',['isMobile',['../classcrisp_1_1api_1_1_helper.html#af18fc91684720f67c66e9c92a38f8bb8',1,'crisp::api::Helper']]], + ['isserialized_359',['isSerialized',['../classcrisp_1_1api_1_1_helper.html#a0dde52b6a2dcbaea2d84f2bc6d4587cf',1,'crisp::api::Helper']]], + ['isvalid_360',['isValid',['../classcrisp_1_1core_1_1_plugins.html#a71a6bc758b558608ae0e6fe42ff7f8d0',1,'crisp\core\Plugins\isValid()'],['../classcrisp_1_1core_1_1_themes.html#abe1261c8e4b87a0974b7b065ff59c4a6',1,'crisp\core\Themes\isValid()']]], + ['isvalidpluginname_361',['isValidPluginName',['../classcrisp_1_1api_1_1_helper.html#a1eb52876ddcb2571c5cd891ed1d46695',1,'crisp::api::Helper']]] ]; diff --git a/docs/search/functions_9.js b/docs/search/functions_9.js index 3b921cdb..3ee5e386 100644 --- a/docs/search/functions_9.js +++ b/docs/search/functions_9.js @@ -1,13 +1,13 @@ var searchData= [ - ['list_360',['list',['../classcrisp_1_1api_1_1_config.html#a60f9ff17d15bf996c3d374518777d2d6',1,'crisp::api::Config']]], - ['listall_361',['listAll',['../classcrisp_1_1api_1_1_a_p_i_stats.html#ad207f3f5f3f454f32cf97615451624bc',1,'crisp::api::APIStats']]], - ['listallbycount_362',['listAllByCount',['../classcrisp_1_1api_1_1_a_p_i_stats.html#ac303b794982c76b776e4c64023ed98f7',1,'crisp::api::APIStats']]], - ['listconfig_363',['listConfig',['../classcrisp_1_1core_1_1_plugin.html#a56a11b7f15ba3715a2f6e8a829b42962',1,'crisp\core\Plugin\listConfig()'],['../classcrisp_1_1core_1_1_plugins.html#a651c27f610270a6019ece3d3d09bc8cb',1,'crisp\core\Plugins\listConfig()']]], - ['listlanguages_364',['listLanguages',['../classcrisp_1_1api_1_1_translation.html#ac83fea9398598f316f651b3b83206acc',1,'crisp::api::Translation']]], - ['listplugins_365',['listPlugins',['../classcrisp_1_1core_1_1_plugins.html#a82d97ddabef7dc7917afb2e8a88818f5',1,'crisp::core::Plugins']]], - ['listtranslations_366',['listTranslations',['../classcrisp_1_1api_1_1_translation.html#add1862ef0ab8870ba795ef9631cc4ff2',1,'crisp\api\Translation\listTranslations()'],['../classcrisp_1_1core_1_1_plugins.html#af1ab715d9a34a02a3720e7769be1a4b4',1,'crisp\core\Plugins\listTranslations()']]], - ['load_367',['load',['../classcrisp_1_1core_1_1_plugins.html#ad5661c97c530ef2b71cc696f025887f9',1,'crisp\core\Plugins\load()'],['../classcrisp_1_1core_1_1_themes.html#ad5661c97c530ef2b71cc696f025887f9',1,'crisp\core\Themes\load()']]], - ['loadapi_368',['loadAPI',['../classcrisp_1_1core_1_1_plugins.html#a9a18b97439a9178a5bdccfbd422bf10b',1,'crisp::core::Plugins']]], - ['loadedplugins_369',['loadedPlugins',['../classcrisp_1_1core_1_1_plugins.html#ad0d4c2f3afaefb1c33c5d91d1933b0ee',1,'crisp::core::Plugins']]] + ['list_362',['list',['../classcrisp_1_1api_1_1_config.html#a60f9ff17d15bf996c3d374518777d2d6',1,'crisp::api::Config']]], + ['listall_363',['listAll',['../classcrisp_1_1api_1_1_a_p_i_stats.html#ad207f3f5f3f454f32cf97615451624bc',1,'crisp::api::APIStats']]], + ['listallbycount_364',['listAllByCount',['../classcrisp_1_1api_1_1_a_p_i_stats.html#ac303b794982c76b776e4c64023ed98f7',1,'crisp::api::APIStats']]], + ['listconfig_365',['listConfig',['../classcrisp_1_1core_1_1_plugin.html#a56a11b7f15ba3715a2f6e8a829b42962',1,'crisp\core\Plugin\listConfig()'],['../classcrisp_1_1core_1_1_plugins.html#a651c27f610270a6019ece3d3d09bc8cb',1,'crisp\core\Plugins\listConfig()']]], + ['listlanguages_366',['listLanguages',['../classcrisp_1_1api_1_1_translation.html#ac83fea9398598f316f651b3b83206acc',1,'crisp::api::Translation']]], + ['listplugins_367',['listPlugins',['../classcrisp_1_1core_1_1_plugins.html#a82d97ddabef7dc7917afb2e8a88818f5',1,'crisp::core::Plugins']]], + ['listtranslations_368',['listTranslations',['../classcrisp_1_1api_1_1_translation.html#add1862ef0ab8870ba795ef9631cc4ff2',1,'crisp\api\Translation\listTranslations()'],['../classcrisp_1_1core_1_1_plugins.html#af1ab715d9a34a02a3720e7769be1a4b4',1,'crisp\core\Plugins\listTranslations()']]], + ['load_369',['load',['../classcrisp_1_1core_1_1_plugins.html#ad5661c97c530ef2b71cc696f025887f9',1,'crisp\core\Plugins\load()'],['../classcrisp_1_1core_1_1_themes.html#ad5661c97c530ef2b71cc696f025887f9',1,'crisp\core\Themes\load()']]], + ['loadapi_370',['loadAPI',['../classcrisp_1_1core_1_1_plugins.html#a9a18b97439a9178a5bdccfbd422bf10b',1,'crisp::core::Plugins']]], + ['loadedplugins_371',['loadedPlugins',['../classcrisp_1_1core_1_1_plugins.html#ad0d4c2f3afaefb1c33c5d91d1933b0ee',1,'crisp::core::Plugins']]] ]; diff --git a/docs/search/functions_a.js b/docs/search/functions_a.js index d4816279..047131a8 100644 --- a/docs/search/functions_a.js +++ b/docs/search/functions_a.js @@ -1,8 +1,8 @@ var searchData= [ - ['markascanceled_370',['markAsCanceled',['../classcrisp_1_1api_1_1lists_1_1_cron.html#a79f6cc9049fd2d344eccecebd480838f',1,'crisp::api::lists::Cron']]], - ['markasfailed_371',['markAsFailed',['../classcrisp_1_1api_1_1lists_1_1_cron.html#a0074a018e8ee051d3424cb7266a11e7d',1,'crisp::api::lists::Cron']]], - ['markasfinished_372',['markAsFinished',['../classcrisp_1_1api_1_1lists_1_1_cron.html#a4deb9bf19524ad984c361d25ae2a3686',1,'crisp::api::lists::Cron']]], - ['markasstarted_373',['markAsStarted',['../classcrisp_1_1api_1_1lists_1_1_cron.html#a3745a82c32e9f6af4e1035c03bee6eb3',1,'crisp::api::lists::Cron']]], - ['migrate_374',['migrate',['../classcrisp_1_1core_1_1_migrations.html#a40ee067b290f06bd50cf41affdeb60dd',1,'crisp::core::Migrations']]] + ['markascanceled_372',['markAsCanceled',['../classcrisp_1_1api_1_1lists_1_1_cron.html#a79f6cc9049fd2d344eccecebd480838f',1,'crisp::api::lists::Cron']]], + ['markasfailed_373',['markAsFailed',['../classcrisp_1_1api_1_1lists_1_1_cron.html#a0074a018e8ee051d3424cb7266a11e7d',1,'crisp::api::lists::Cron']]], + ['markasfinished_374',['markAsFinished',['../classcrisp_1_1api_1_1lists_1_1_cron.html#a4deb9bf19524ad984c361d25ae2a3686',1,'crisp::api::lists::Cron']]], + ['markasstarted_375',['markAsStarted',['../classcrisp_1_1api_1_1lists_1_1_cron.html#a3745a82c32e9f6af4e1035c03bee6eb3',1,'crisp::api::lists::Cron']]], + ['migrate_376',['migrate',['../classcrisp_1_1core_1_1_migrations.html#a40ee067b290f06bd50cf41affdeb60dd',1,'crisp::core::Migrations']]] ]; diff --git a/docs/search/functions_b.js b/docs/search/functions_b.js index 4e138cf3..d6c8520a 100644 --- a/docs/search/functions_b.js +++ b/docs/search/functions_b.js @@ -1,4 +1,4 @@ var searchData= [ - ['newtranslation_375',['newTranslation',['../classcrisp_1_1api_1_1_language.html#a2b0ce04b6f797dba362439e3d0175749',1,'crisp::api::Language']]] + ['newtranslation_377',['newTranslation',['../classcrisp_1_1api_1_1_language.html#a2b0ce04b6f797dba362439e3d0175749',1,'crisp::api::Language']]] ]; diff --git a/docs/search/functions_c.js b/docs/search/functions_c.js index 504ead74..3432282c 100644 --- a/docs/search/functions_c.js +++ b/docs/search/functions_c.js @@ -1,7 +1,7 @@ var searchData= [ - ['placeholder_376',['PlaceHolder',['../classcrisp_1_1api_1_1_helper.html#a8326b9c817011a863b8f6c2baafef37b',1,'crisp::api::Helper']]], - ['pointexists_377',['pointExists',['../classcrisp_1_1api_1_1_phoenix.html#a35e18765de7a079173e6b117bb70d320',1,'crisp::api::Phoenix']]], - ['pointexistspg_378',['pointExistsPG',['../classcrisp_1_1api_1_1_phoenix.html#abd12e3de000bce22a5c3cf4f497bffbc',1,'crisp::api::Phoenix']]], - ['prettydump_379',['prettyDump',['../classcrisp_1_1api_1_1_helper.html#a93a7eee8cb14ed9864e7195da83b4a32',1,'crisp::api::Helper']]] + ['placeholder_378',['PlaceHolder',['../classcrisp_1_1api_1_1_helper.html#a8326b9c817011a863b8f6c2baafef37b',1,'crisp::api::Helper']]], + ['pointexists_379',['pointExists',['../classcrisp_1_1api_1_1_phoenix.html#a35e18765de7a079173e6b117bb70d320',1,'crisp::api::Phoenix']]], + ['pointexistspg_380',['pointExistsPG',['../classcrisp_1_1api_1_1_phoenix.html#abd12e3de000bce22a5c3cf4f497bffbc',1,'crisp::api::Phoenix']]], + ['prettydump_381',['prettyDump',['../classcrisp_1_1api_1_1_helper.html#a93a7eee8cb14ed9864e7195da83b4a32',1,'crisp::api::Helper']]] ]; diff --git a/docs/search/functions_d.js b/docs/search/functions_d.js index fdb54cbb..a365fd99 100644 --- a/docs/search/functions_d.js +++ b/docs/search/functions_d.js @@ -1,11 +1,11 @@ var searchData= [ - ['refreshkvstorage_380',['refreshKVStorage',['../classcrisp_1_1core_1_1_plugins.html#ae4f5da23b4391d33835ff6cb80e99c35',1,'crisp\core\Plugins\refreshKVStorage()'],['../classcrisp_1_1core_1_1_themes.html#a05b8ca21d6ee5a17b7773d5cbdf0a61b',1,'crisp\core\Themes\refreshKVStorage()']]], - ['refreshtranslations_381',['refreshTranslations',['../classcrisp_1_1core_1_1_plugins.html#a77ae6319b043cfc9f5aabfa546bf2fd6',1,'crisp\core\Plugins\refreshTranslations()'],['../classcrisp_1_1core_1_1_themes.html#a914afa63de07d13d347578b7a8b18673',1,'crisp\core\Themes\refreshTranslations()']]], - ['registerafterrenderhook_382',['registerAfterRenderHook',['../classcrisp_1_1core_1_1_plugin.html#a2a44d4795ce4023cd5173a30c4e9d87e',1,'crisp\core\Plugin\registerAfterRenderHook()'],['../classcrisp_1_1core_1_1_plugins.html#a0a8df1e18409966ed4192ad9d5b66861',1,'crisp\core\Plugins\registerAfterRenderHook()']]], - ['registerinstallhook_383',['registerInstallHook',['../classcrisp_1_1core_1_1_plugin.html#a686fc682ce8af045e7acef7d987eac97',1,'crisp\core\Plugin\registerInstallHook()'],['../classcrisp_1_1core_1_1_plugins.html#acff78ca85f87a3558ac98e093c1dfb82',1,'crisp\core\Plugins\registerInstallHook()'],['../classcrisp_1_1core_1_1_themes.html#a53d1c32ef5bb987166303efce3ac69af',1,'crisp\core\Themes\registerInstallHook()']]], - ['registeruninstallhook_384',['registerUninstallHook',['../classcrisp_1_1core_1_1_plugin.html#a61ba1de9028c609aa69d675753a0437e',1,'crisp\core\Plugin\registerUninstallHook()'],['../classcrisp_1_1core_1_1_plugins.html#a807f89718708ff201065c579b3d449b2',1,'crisp\core\Plugins\registerUninstallHook()'],['../classcrisp_1_1core_1_1_themes.html#a01581e1996d42593c35db54039750a43',1,'crisp\core\Themes\registerUninstallHook()']]], - ['reinstall_385',['reinstall',['../classcrisp_1_1core_1_1_plugins.html#af3192aa28b8081c2d51612f6d22d6182',1,'crisp\core\Plugins\reinstall()'],['../classcrisp_1_1core_1_1_themes.html#ac7c0ef287d09e09c4a58d3163e72796e',1,'crisp\core\Themes\reinstall()']]], - ['response_386',['response',['../classcrisp_1_1core_1_1_plugin_a_p_i.html#a189cb750ee35b423308962aa27691fcc',1,'crisp::core::PluginAPI']]], - ['rollback_387',['rollback',['../classcrisp_1_1core_1_1_migrations.html#afa549adf79e3f8c09fe8f903dd5fbfa7',1,'crisp::core::Migrations']]] + ['refreshkvstorage_382',['refreshKVStorage',['../classcrisp_1_1core_1_1_plugins.html#ae4f5da23b4391d33835ff6cb80e99c35',1,'crisp\core\Plugins\refreshKVStorage()'],['../classcrisp_1_1core_1_1_themes.html#a05b8ca21d6ee5a17b7773d5cbdf0a61b',1,'crisp\core\Themes\refreshKVStorage()']]], + ['refreshtranslations_383',['refreshTranslations',['../classcrisp_1_1core_1_1_plugins.html#a77ae6319b043cfc9f5aabfa546bf2fd6',1,'crisp\core\Plugins\refreshTranslations()'],['../classcrisp_1_1core_1_1_themes.html#a914afa63de07d13d347578b7a8b18673',1,'crisp\core\Themes\refreshTranslations()']]], + ['registerafterrenderhook_384',['registerAfterRenderHook',['../classcrisp_1_1core_1_1_plugin.html#a2a44d4795ce4023cd5173a30c4e9d87e',1,'crisp\core\Plugin\registerAfterRenderHook()'],['../classcrisp_1_1core_1_1_plugins.html#a0a8df1e18409966ed4192ad9d5b66861',1,'crisp\core\Plugins\registerAfterRenderHook()']]], + ['registerinstallhook_385',['registerInstallHook',['../classcrisp_1_1core_1_1_plugin.html#a686fc682ce8af045e7acef7d987eac97',1,'crisp\core\Plugin\registerInstallHook()'],['../classcrisp_1_1core_1_1_plugins.html#acff78ca85f87a3558ac98e093c1dfb82',1,'crisp\core\Plugins\registerInstallHook()'],['../classcrisp_1_1core_1_1_themes.html#a53d1c32ef5bb987166303efce3ac69af',1,'crisp\core\Themes\registerInstallHook()']]], + ['registeruninstallhook_386',['registerUninstallHook',['../classcrisp_1_1core_1_1_plugin.html#a61ba1de9028c609aa69d675753a0437e',1,'crisp\core\Plugin\registerUninstallHook()'],['../classcrisp_1_1core_1_1_plugins.html#a807f89718708ff201065c579b3d449b2',1,'crisp\core\Plugins\registerUninstallHook()'],['../classcrisp_1_1core_1_1_themes.html#a01581e1996d42593c35db54039750a43',1,'crisp\core\Themes\registerUninstallHook()']]], + ['reinstall_387',['reinstall',['../classcrisp_1_1core_1_1_plugins.html#af3192aa28b8081c2d51612f6d22d6182',1,'crisp\core\Plugins\reinstall()'],['../classcrisp_1_1core_1_1_themes.html#ac7c0ef287d09e09c4a58d3163e72796e',1,'crisp\core\Themes\reinstall()']]], + ['response_388',['response',['../classcrisp_1_1core_1_1_plugin_a_p_i.html#a189cb750ee35b423308962aa27691fcc',1,'crisp::core::PluginAPI']]], + ['rollback_389',['rollback',['../classcrisp_1_1core_1_1_migrations.html#afa549adf79e3f8c09fe8f903dd5fbfa7',1,'crisp::core::Migrations']]] ]; diff --git a/docs/search/functions_e.js b/docs/search/functions_e.js index f2058c20..678efefd 100644 --- a/docs/search/functions_e.js +++ b/docs/search/functions_e.js @@ -1,18 +1,18 @@ var searchData= [ - ['searchservicebynamepg_388',['searchServiceByNamePG',['../classcrisp_1_1api_1_1_phoenix.html#a86b6909fcd8110ceef103f22434fe8ab',1,'crisp::api::Phoenix']]], - ['serviceexists_389',['serviceExists',['../classcrisp_1_1api_1_1_phoenix.html#a9d678dde5eef2774652ae08c11a87f41',1,'crisp::api::Phoenix']]], - ['serviceexistsbyname_390',['serviceExistsByName',['../classcrisp_1_1api_1_1_phoenix.html#aefc884b0de712c30078aa06ba98f1232',1,'crisp::api::Phoenix']]], - ['serviceexistsbynamepg_391',['serviceExistsByNamePG',['../classcrisp_1_1api_1_1_phoenix.html#a917936f7ed3a9c60005cee21f9206fc4',1,'crisp::api::Phoenix']]], - ['serviceexistsbyslugpg_392',['serviceExistsBySlugPG',['../classcrisp_1_1api_1_1_phoenix.html#abafe513a641435eb0c9f59c99a317fb1',1,'crisp::api::Phoenix']]], - ['serviceexistspg_393',['serviceExistsPG',['../classcrisp_1_1api_1_1_phoenix.html#a6f35829d63efe17552f37ab86d1007bb',1,'crisp::api::Phoenix']]], - ['set_394',['set',['../classcrisp_1_1api_1_1_config.html#a3b45b8d8f3ecd8311cb318410d74b4bd',1,'crisp::api::Config']]], - ['setcode_395',['setCode',['../classcrisp_1_1api_1_1_language.html#a95444594a3c8e26bc5c91d8b1747b2cd',1,'crisp::api::Language']]], - ['setconfig_396',['setConfig',['../classcrisp_1_1core_1_1_plugin.html#a27ce1b67a2fbf090699ef4d3ce6663aa',1,'crisp::core::Plugin']]], - ['setflag_397',['setFlag',['../classcrisp_1_1api_1_1_language.html#af5b5bcbcf3f41b30df5f84c68994c9fc',1,'crisp::api::Language']]], - ['setlocale_398',['setLocale',['../classcrisp_1_1api_1_1_helper.html#a828aaa44c7f3e7b764c9a774d13939b9',1,'crisp::api::Helper']]], - ['setlog_399',['setLog',['../classcrisp_1_1api_1_1lists_1_1_cron.html#afdc8722707a95bffd4979134a510a1e9',1,'crisp::api::lists::Cron']]], - ['setname_400',['setName',['../classcrisp_1_1api_1_1_language.html#a46b5aa9e8b383ec6b6a667cead4c9010',1,'crisp::api::Language']]], - ['setnativename_401',['setNativeName',['../classcrisp_1_1api_1_1_language.html#a044c5d155f5d06187e1985383b764632',1,'crisp::api::Language']]], - ['startswith_402',['startsWith',['../classcrisp_1_1api_1_1_helper.html#a155e158a30306cdc59190c6cff1ccfb8',1,'crisp::api::Helper']]] + ['searchservicebynamepg_390',['searchServiceByNamePG',['../classcrisp_1_1api_1_1_phoenix.html#a86b6909fcd8110ceef103f22434fe8ab',1,'crisp::api::Phoenix']]], + ['serviceexists_391',['serviceExists',['../classcrisp_1_1api_1_1_phoenix.html#a9d678dde5eef2774652ae08c11a87f41',1,'crisp::api::Phoenix']]], + ['serviceexistsbyname_392',['serviceExistsByName',['../classcrisp_1_1api_1_1_phoenix.html#aefc884b0de712c30078aa06ba98f1232',1,'crisp::api::Phoenix']]], + ['serviceexistsbynamepg_393',['serviceExistsByNamePG',['../classcrisp_1_1api_1_1_phoenix.html#a917936f7ed3a9c60005cee21f9206fc4',1,'crisp::api::Phoenix']]], + ['serviceexistsbyslugpg_394',['serviceExistsBySlugPG',['../classcrisp_1_1api_1_1_phoenix.html#abafe513a641435eb0c9f59c99a317fb1',1,'crisp::api::Phoenix']]], + ['serviceexistspg_395',['serviceExistsPG',['../classcrisp_1_1api_1_1_phoenix.html#a6f35829d63efe17552f37ab86d1007bb',1,'crisp::api::Phoenix']]], + ['set_396',['set',['../classcrisp_1_1api_1_1_config.html#a3b45b8d8f3ecd8311cb318410d74b4bd',1,'crisp::api::Config']]], + ['setcode_397',['setCode',['../classcrisp_1_1api_1_1_language.html#a95444594a3c8e26bc5c91d8b1747b2cd',1,'crisp::api::Language']]], + ['setconfig_398',['setConfig',['../classcrisp_1_1core_1_1_plugin.html#a27ce1b67a2fbf090699ef4d3ce6663aa',1,'crisp::core::Plugin']]], + ['setflag_399',['setFlag',['../classcrisp_1_1api_1_1_language.html#af5b5bcbcf3f41b30df5f84c68994c9fc',1,'crisp::api::Language']]], + ['setlocale_400',['setLocale',['../classcrisp_1_1api_1_1_helper.html#a828aaa44c7f3e7b764c9a774d13939b9',1,'crisp::api::Helper']]], + ['setlog_401',['setLog',['../classcrisp_1_1api_1_1lists_1_1_cron.html#afdc8722707a95bffd4979134a510a1e9',1,'crisp::api::lists::Cron']]], + ['setname_402',['setName',['../classcrisp_1_1api_1_1_language.html#a46b5aa9e8b383ec6b6a667cead4c9010',1,'crisp::api::Language']]], + ['setnativename_403',['setNativeName',['../classcrisp_1_1api_1_1_language.html#a044c5d155f5d06187e1985383b764632',1,'crisp::api::Language']]], + ['startswith_404',['startsWith',['../classcrisp_1_1api_1_1_helper.html#a155e158a30306cdc59190c6cff1ccfb8',1,'crisp::api::Helper']]] ]; diff --git a/docs/search/functions_f.js b/docs/search/functions_f.js index 1538b13b..fb48b7d9 100644 --- a/docs/search/functions_f.js +++ b/docs/search/functions_f.js @@ -1,6 +1,6 @@ var searchData= [ - ['templateexists_403',['templateExists',['../classcrisp_1_1api_1_1_helper.html#a4d67f0d47d7e28e5f2b344bb06db744a',1,'crisp::api::Helper']]], - ['testversion_404',['testVersion',['../classcrisp_1_1core_1_1_plugins.html#a36eefd37ba778833fa1dd82b5c9fb4b6',1,'crisp::core::Plugins']]], - ['truncatetext_405',['truncateText',['../classcrisp_1_1api_1_1_helper.html#a11e88bd83a076ce47a26c25cb6fc8dcf',1,'crisp::api::Helper']]] + ['templateexists_405',['templateExists',['../classcrisp_1_1api_1_1_helper.html#a4d67f0d47d7e28e5f2b344bb06db744a',1,'crisp::api::Helper']]], + ['testversion_406',['testVersion',['../classcrisp_1_1core_1_1_plugins.html#a36eefd37ba778833fa1dd82b5c9fb4b6',1,'crisp::core::Plugins']]], + ['truncatetext_407',['truncateText',['../classcrisp_1_1api_1_1_helper.html#a11e88bd83a076ce47a26c25cb6fc8dcf',1,'crisp::api::Helper']]] ]; diff --git a/docs/search/namespaces_0.js b/docs/search/namespaces_0.js index 20bf904f..5894e6aa 100644 --- a/docs/search/namespaces_0.js +++ b/docs/search/namespaces_0.js @@ -1,8 +1,8 @@ var searchData= [ - ['api_240',['api',['../namespacecrisp_1_1api.html',1,'crisp']]], - ['core_241',['core',['../namespacecrisp_1_1core.html',1,'crisp']]], - ['crisp_242',['crisp',['../namespacecrisp.html',1,'']]], - ['exceptions_243',['exceptions',['../namespacecrisp_1_1exceptions.html',1,'crisp']]], - ['lists_244',['lists',['../namespacecrisp_1_1api_1_1lists.html',1,'crisp::api']]] + ['api_241',['api',['../namespacecrisp_1_1api.html',1,'crisp']]], + ['core_242',['core',['../namespacecrisp_1_1core.html',1,'crisp']]], + ['crisp_243',['crisp',['../namespacecrisp.html',1,'']]], + ['exceptions_244',['exceptions',['../namespacecrisp_1_1exceptions.html',1,'crisp']]], + ['lists_245',['lists',['../namespacecrisp_1_1api_1_1lists.html',1,'crisp::api']]] ]; diff --git a/docs/search/pages_0.js b/docs/search/pages_0.js index 0e507dd7..ebd136c0 100644 --- a/docs/search/pages_0.js +++ b/docs/search/pages_0.js @@ -1,5 +1,5 @@ var searchData= [ - ['deprecated_20list_436',['Deprecated List',['../deprecated.html',1,'']]], - ['developing_20plugins_437',['Developing Plugins',['../devplugin.html',1,'']]] + ['deprecated_20list_438',['Deprecated List',['../deprecated.html',1,'']]], + ['developing_20plugins_439',['Developing Plugins',['../devplugin.html',1,'']]] ]; diff --git a/docs/search/variables_0.js b/docs/search/variables_0.js index ddeab4c6..f0eea61b 100644 --- a/docs/search/variables_0.js +++ b/docs/search/variables_0.js @@ -1,16 +1,16 @@ var searchData= [ - ['_24cookie_5fprefix_411',['$Cookie_Prefix',['../classcrisp_1_1core_1_1_config.html#a24d079fc744e39e1df67e148c0f896ac',1,'crisp::core::Config']]], - ['_24currentfile_412',['$CurrentFile',['../classcrisp_1_1core_1_1_plugin.html#a3f73976dac01c78b82529302facf6675',1,'crisp\core\Plugin\$CurrentFile()'],['../classcrisp_1_1core_1_1_theme.html#a3f73976dac01c78b82529302facf6675',1,'crisp\core\Theme\$CurrentFile()']]], - ['_24currentpage_413',['$CurrentPage',['../classcrisp_1_1core_1_1_plugin.html#abe62c87e7efe1c0e9d2ed7f94d08b415',1,'crisp\core\Plugin\$CurrentPage()'],['../classcrisp_1_1core_1_1_theme.html#abe62c87e7efe1c0e9d2ed7f94d08b415',1,'crisp\core\Theme\$CurrentPage()']]], - ['_24database_414',['$Database',['../classcrisp_1_1core_1_1_migrations.html#a13e00c30f133e532a23d23729ff66dbc',1,'crisp::core::Migrations']]], - ['_24interface_415',['$Interface',['../classcrisp_1_1core_1_1_plugin_a_p_i.html#ac0ee5ad1739a394d9e2643d1590b1806',1,'crisp::core::PluginAPI']]], - ['_24language_416',['$Language',['../classcrisp_1_1api_1_1_language.html#a8a8555c1bc9094e068a2f54cec96199f',1,'crisp\api\Language\$Language()'],['../classcrisp_1_1api_1_1_translation.html#a08ea4a735a6a9daabc3a452ee8e20d7c',1,'crisp\api\Translation\$Language()']]], - ['_24languageid_417',['$LanguageID',['../classcrisp_1_1api_1_1_language.html#a85f68099f2c27e588c3a8a66086e05ec',1,'crisp::api::Language']]], - ['_24pluginfolder_418',['$PluginFolder',['../classcrisp_1_1core_1_1_plugin.html#a91dd51e8dc736449a6956256770cbd97',1,'crisp\core\Plugin\$PluginFolder()'],['../classcrisp_1_1core_1_1_plugin_a_p_i.html#a91dd51e8dc736449a6956256770cbd97',1,'crisp\core\PluginAPI\$PluginFolder()']]], - ['_24pluginmetadata_419',['$PluginMetadata',['../classcrisp_1_1core_1_1_plugin.html#af00feb40462f41027749b0b9cb603d89',1,'crisp::core::Plugin']]], - ['_24pluginname_420',['$PluginName',['../classcrisp_1_1core_1_1_plugin.html#a6e99fd697b34d245a17246e3b7a0fddc',1,'crisp\core\Plugin\$PluginName()'],['../classcrisp_1_1core_1_1_plugin_a_p_i.html#a6e99fd697b34d245a17246e3b7a0fddc',1,'crisp\core\PluginAPI\$PluginName()']]], - ['_24pluginpath_421',['$PluginPath',['../classcrisp_1_1core_1_1_plugin.html#ad3412637c00f576b98c4899c215d0163',1,'crisp\core\Plugin\$PluginPath()'],['../classcrisp_1_1core_1_1_plugin_a_p_i.html#ad3412637c00f576b98c4899c215d0163',1,'crisp\core\PluginAPI\$PluginPath()']]], - ['_24query_422',['$Query',['../classcrisp_1_1core_1_1_plugin_a_p_i.html#a4b858f1e2bc16055bb5cb1dbafb74b6f',1,'crisp::core::PluginAPI']]], - ['_24twigtheme_423',['$TwigTheme',['../classcrisp_1_1core_1_1_plugin.html#abd1f2ee5000ecfc1bfc02daf299a7e38',1,'crisp::core::Plugin']]] + ['_24cookie_5fprefix_413',['$Cookie_Prefix',['../classcrisp_1_1core_1_1_config.html#a24d079fc744e39e1df67e148c0f896ac',1,'crisp::core::Config']]], + ['_24currentfile_414',['$CurrentFile',['../classcrisp_1_1core_1_1_plugin.html#a3f73976dac01c78b82529302facf6675',1,'crisp\core\Plugin\$CurrentFile()'],['../classcrisp_1_1core_1_1_theme.html#a3f73976dac01c78b82529302facf6675',1,'crisp\core\Theme\$CurrentFile()']]], + ['_24currentpage_415',['$CurrentPage',['../classcrisp_1_1core_1_1_plugin.html#abe62c87e7efe1c0e9d2ed7f94d08b415',1,'crisp\core\Plugin\$CurrentPage()'],['../classcrisp_1_1core_1_1_theme.html#abe62c87e7efe1c0e9d2ed7f94d08b415',1,'crisp\core\Theme\$CurrentPage()']]], + ['_24database_416',['$Database',['../classcrisp_1_1core_1_1_migrations.html#a13e00c30f133e532a23d23729ff66dbc',1,'crisp::core::Migrations']]], + ['_24interface_417',['$Interface',['../classcrisp_1_1core_1_1_plugin_a_p_i.html#ac0ee5ad1739a394d9e2643d1590b1806',1,'crisp::core::PluginAPI']]], + ['_24language_418',['$Language',['../classcrisp_1_1api_1_1_language.html#a8a8555c1bc9094e068a2f54cec96199f',1,'crisp\api\Language\$Language()'],['../classcrisp_1_1api_1_1_translation.html#a08ea4a735a6a9daabc3a452ee8e20d7c',1,'crisp\api\Translation\$Language()']]], + ['_24languageid_419',['$LanguageID',['../classcrisp_1_1api_1_1_language.html#a85f68099f2c27e588c3a8a66086e05ec',1,'crisp::api::Language']]], + ['_24pluginfolder_420',['$PluginFolder',['../classcrisp_1_1core_1_1_plugin.html#a91dd51e8dc736449a6956256770cbd97',1,'crisp\core\Plugin\$PluginFolder()'],['../classcrisp_1_1core_1_1_plugin_a_p_i.html#a91dd51e8dc736449a6956256770cbd97',1,'crisp\core\PluginAPI\$PluginFolder()']]], + ['_24pluginmetadata_421',['$PluginMetadata',['../classcrisp_1_1core_1_1_plugin.html#af00feb40462f41027749b0b9cb603d89',1,'crisp::core::Plugin']]], + ['_24pluginname_422',['$PluginName',['../classcrisp_1_1core_1_1_plugin.html#a6e99fd697b34d245a17246e3b7a0fddc',1,'crisp\core\Plugin\$PluginName()'],['../classcrisp_1_1core_1_1_plugin_a_p_i.html#a6e99fd697b34d245a17246e3b7a0fddc',1,'crisp\core\PluginAPI\$PluginName()']]], + ['_24pluginpath_423',['$PluginPath',['../classcrisp_1_1core_1_1_plugin.html#ad3412637c00f576b98c4899c215d0163',1,'crisp\core\Plugin\$PluginPath()'],['../classcrisp_1_1core_1_1_plugin_a_p_i.html#ad3412637c00f576b98c4899c215d0163',1,'crisp\core\PluginAPI\$PluginPath()']]], + ['_24query_424',['$Query',['../classcrisp_1_1core_1_1_plugin_a_p_i.html#a4b858f1e2bc16055bb5cb1dbafb74b6f',1,'crisp::core::PluginAPI']]], + ['_24twigtheme_425',['$TwigTheme',['../classcrisp_1_1core_1_1_plugin.html#abd1f2ee5000ecfc1bfc02daf299a7e38',1,'crisp::core::Plugin']]] ]; diff --git a/docs/search/variables_1.js b/docs/search/variables_1.js index d37ac630..8841eefb 100644 --- a/docs/search/variables_1.js +++ b/docs/search/variables_1.js @@ -1,11 +1,11 @@ var searchData= [ - ['db_5fbool_424',['DB_BOOL',['../classcrisp_1_1core_1_1_migrations.html#a5571c0e434176ccbca829cb8a263a485',1,'crisp::core::Migrations']]], - ['db_5finteger_425',['DB_INTEGER',['../classcrisp_1_1core_1_1_migrations.html#a31cc7487b8db3a13a2a411a78005c595',1,'crisp::core::Migrations']]], - ['db_5flongtext_426',['DB_LONGTEXT',['../classcrisp_1_1core_1_1_migrations.html#afb1c31820e997466c52bf2e9c7b4c5e0',1,'crisp::core::Migrations']]], - ['db_5fprimarykey_427',['DB_PRIMARYKEY',['../classcrisp_1_1core_1_1_migrations.html#a982f231793e2b157ed3a92a1948f18cf',1,'crisp::core::Migrations']]], - ['db_5ftext_428',['DB_TEXT',['../classcrisp_1_1core_1_1_migrations.html#ac32f99182de182f058565b3d7d3a5b22',1,'crisp::core::Migrations']]], - ['db_5ftimestamp_429',['DB_TIMESTAMP',['../classcrisp_1_1core_1_1_migrations.html#aa1e26f723dce28fe8d7419a31a7c7cf1',1,'crisp::core::Migrations']]], - ['db_5funiquekey_430',['DB_UNIQUEKEY',['../classcrisp_1_1core_1_1_migrations.html#a849312ca5cf92a8bb2b01a805b16d8b0',1,'crisp::core::Migrations']]], - ['db_5fvarchar_431',['DB_VARCHAR',['../classcrisp_1_1core_1_1_migrations.html#acbee2aa4c29a42ddc49f0def501f987f',1,'crisp::core::Migrations']]] + ['db_5fbool_426',['DB_BOOL',['../classcrisp_1_1core_1_1_migrations.html#a5571c0e434176ccbca829cb8a263a485',1,'crisp::core::Migrations']]], + ['db_5finteger_427',['DB_INTEGER',['../classcrisp_1_1core_1_1_migrations.html#a31cc7487b8db3a13a2a411a78005c595',1,'crisp::core::Migrations']]], + ['db_5flongtext_428',['DB_LONGTEXT',['../classcrisp_1_1core_1_1_migrations.html#afb1c31820e997466c52bf2e9c7b4c5e0',1,'crisp::core::Migrations']]], + ['db_5fprimarykey_429',['DB_PRIMARYKEY',['../classcrisp_1_1core_1_1_migrations.html#a982f231793e2b157ed3a92a1948f18cf',1,'crisp::core::Migrations']]], + ['db_5ftext_430',['DB_TEXT',['../classcrisp_1_1core_1_1_migrations.html#ac32f99182de182f058565b3d7d3a5b22',1,'crisp::core::Migrations']]], + ['db_5ftimestamp_431',['DB_TIMESTAMP',['../classcrisp_1_1core_1_1_migrations.html#aa1e26f723dce28fe8d7419a31a7c7cf1',1,'crisp::core::Migrations']]], + ['db_5funiquekey_432',['DB_UNIQUEKEY',['../classcrisp_1_1core_1_1_migrations.html#a849312ca5cf92a8bb2b01a805b16d8b0',1,'crisp::core::Migrations']]], + ['db_5fvarchar_433',['DB_VARCHAR',['../classcrisp_1_1core_1_1_migrations.html#acbee2aa4c29a42ddc49f0def501f987f',1,'crisp::core::Migrations']]] ]; diff --git a/docs/search/variables_2.js b/docs/search/variables_2.js index 2f5baa74..70612a38 100644 --- a/docs/search/variables_2.js +++ b/docs/search/variables_2.js @@ -1,7 +1,7 @@ var searchData= [ - ['universe_5fbeta_432',['UNIVERSE_BETA',['../classcrisp_1_1_universe.html#a9a02599d489d82a7da08abeba279931a',1,'crisp::Universe']]], - ['universe_5fdev_433',['UNIVERSE_DEV',['../classcrisp_1_1_universe.html#ab137dbf19f0e7b1ea3b538aa4b338b71',1,'crisp::Universe']]], - ['universe_5fpublic_434',['UNIVERSE_PUBLIC',['../classcrisp_1_1_universe.html#aab80c72ee02715989493783e45f10fbb',1,'crisp::Universe']]], - ['universe_5ftosdr_435',['UNIVERSE_TOSDR',['../classcrisp_1_1_universe.html#a5d195f7415a5a53669c4102aa1bd9d6d',1,'crisp::Universe']]] + ['universe_5fbeta_434',['UNIVERSE_BETA',['../classcrisp_1_1_universe.html#a9a02599d489d82a7da08abeba279931a',1,'crisp::Universe']]], + ['universe_5fdev_435',['UNIVERSE_DEV',['../classcrisp_1_1_universe.html#ab137dbf19f0e7b1ea3b538aa4b338b71',1,'crisp::Universe']]], + ['universe_5fpublic_436',['UNIVERSE_PUBLIC',['../classcrisp_1_1_universe.html#aab80c72ee02715989493783e45f10fbb',1,'crisp::Universe']]], + ['universe_5ftosdr_437',['UNIVERSE_TOSDR',['../classcrisp_1_1_universe.html#a5d195f7415a5a53669c4102aa1bd9d6d',1,'crisp::Universe']]] ]; diff --git a/pixelcatproductions/class/crisp/core/Migrations.php b/pixelcatproductions/class/crisp/core/Migrations.php index c4032818..75e604b6 100644 --- a/pixelcatproductions/class/crisp/core/Migrations.php +++ b/pixelcatproductions/class/crisp/core/Migrations.php @@ -121,9 +121,9 @@ public function isMigrated(string $file) { public function migrate() { echo "Starting Migration..." . PHP_EOL; $files = glob(__DIR__ . '/../migrations/*.{php}', GLOB_BRACE); - + natsort($files); - + foreach ($files as $file) { if (basename($file) == "template.php") { continue; @@ -209,6 +209,28 @@ protected function addIndex(string $Table, array $Column, $Type = self::DB_PRIMA throw new \Exception($statement->errorInfo()); } + /** + * Remove a column from a table + * @param string $Table The table name + * @param string $Column The name of the column + * @return boolean + * @throws \Exception on PDO Error + * @since 0.0.8-beta.RC3 + */ + protected function dropColumn(string $Table, string $Column) { + echo "Removing column from Table $Table..." . PHP_EOL; + $SQL = "ALTER TABLE `$Table` DROP COLUMN `$Column`"; + + $statement = $this->Database->prepare($SQL); + + if ($statement->execute()) { + echo "Removed Column from Table $Table!" . PHP_EOL; + return true; + } + echo "Failed to remove Column from Table $Table!" . PHP_EOL; + throw new \Exception($statement->errorInfo()); + } + /** * Add a column to a table * @param string $Table The table name