Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/assets/vue/components/installer/Step7.vue

68 lines
1.8 KiB

<template>
<div class="install-step">
<SectionHeader
:title="
'update' !== installerData.installType
? t('Step 7 - Installation process execution')
: t('Step 7 - Update process execution')
"
class="RequirementHeading"
/>
<p
v-if="installerData.installationProfile"
class="mb-4"
v-text="installerData.installationProfile"
/>
<div class="RequirementContent">
<p
v-t="
'When you enter your portal for the first time, the best way to understand it is to create a course with the \'Create course\' link in the menu and play around a little.'
"
class="mb-3"
/>
<Message
:closable="false"
severity="warn"
>
<strong v-t="'Security advice'" />
<i18n-t
keypath="To protect your site, make the whole %s directory read-only (chmod -R 0555 on Linux) and delete the %s directory."
tag="p"
>
<code>config/</code>
<code>main/install/</code>
</i18n-t>
</Message>
<div class="formgroup-inline">
<div class="field">
<BaseAppLink url="../../">
<Button
:label="t('Go to your newly created portal.')"
class="p-button-success"
type="button"
/>
</BaseAppLink>
</div>
</div>
</div>
</div>
</template>
<script setup>
import { inject } from "vue"
import { useI18n } from "vue-i18n"
import Message from "primevue/message"
import Button from "primevue/button"
import SectionHeader from "../layout/SectionHeader.vue"
import BaseAppLink from "../basecomponents/BaseAppLink.vue"
const { t } = useI18n()
const installerData = inject("installerData")
</script>