database-ahead-of-plugin.blade.php
2 years ago
database-prefix-too-long.blade.php
2 years ago
layout.blade.php
2 years ago
migration-error.blade.php
2 years ago
migration-is-running.blade.php
2 years ago
pdo.blade.php
2 years ago
migration-error.blade.php
15 lines
| 1 | @php /** @var string $plugin_version */ @endphp |
| 2 | @php /** @var string $migration_db_version */ @endphp |
| 3 | @php /** @var ?int $migration_step */ @endphp |
| 4 | @php /** @var ?string $migration_error */ @endphp |
| 5 | @php /** @var ?string $migration_error_query */ @endphp |
| 6 | |
| 7 | <h2><?php esc_html_e('Data Migration Failed', 'independent-analytics'); ?></h2> |
| 8 | <p class="get-help"><strong><?php printf(esc_html__('Please send the info below to %s and we will help to resolve this error ASAP. We\'re sorry for the inconvenience.', 'independent-analytics'), 'support@independentwp.com'); ?></strong></p> |
| 9 | <p><strong><?php esc_html_e('Plugin version:', 'independent-analytics'); ?></strong> {{$plugin_version}}</p> |
| 10 | <p><strong><?php esc_html_e('Migration:', 'independent-analytics'); ?></strong> {{$migration_db_version}}</p> |
| 11 | <p><strong><?php esc_html_e('Step:', 'independent-analytics'); ?></strong> {{$migration_step}}</p> |
| 12 | <p><strong><?php esc_html_e('Error message:', 'independent-analytics'); ?></strong></p> |
| 13 | <textarea rows="2" readonly>{{$migration_error}}</textarea> |
| 14 | <p><strong><?php esc_html_e('Failed query:', 'independent-analytics'); ?></strong></p> |
| 15 | <textarea rows="5" readonly>{{$migration_error_query}}</textarea> |