-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
98dff22
commit e73cafd
Showing
4 changed files
with
60 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
config.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<?php | ||
|
||
define('NOMEEVENTO', 'Nome do Evento'); //Nome da palestra/evento a ser exibido no titulo da página | ||
|
||
define('FULLURL','http://localhost/AskSystem'); //Endereço completo da raiz do sistema de perguntas sem / no final | ||
|
||
define('PALESTRANTE','Fulano de Tal'); //Nome do palestrante | ||
|
||
define('SENDMETHOD','sqlite'); //Método de envio da pergunta, as opções podem ser 'email', 'pushover' ou 'sqlite' | ||
|
||
|
||
// SE SENDMETHOD FOR EMAIL | ||
|
||
define('SENDMETHODMAIL','email@exemplo.com'); //Defina aqui o endereço para o qual deverá ser enviado | ||
|
||
define('SENDMETHODFROM','asksystem@samuelmoraesf.tk'); //Endereço de email que o PHP usará para enviar as mensagens | ||
|
||
|
||
|
||
//SE SENDMETHOD FOR PUSHOVERUSER | ||
|
||
define('PUSHOVERUSER','uLubKkACvqvM2nY38xd4SpBfQ3XEma'); //Seu usuário do Pushover | ||
|
||
define('PUSHOVERTOKEN','aNyt8hP7fsJ4dQMUofrxSx9QKeiKdx'); //Seu token do Pushover | ||
|
||
|
||
|
||
//SE SENDMETHOD FOR SQLITE - ISTO HABILITA O PAINEL DE GERENCIAMENTO | ||
|
||
define('SQLITEDB','perguntas.db'); //Banco de dados SQLite | ||
|
||
define('TIMEZONE','America/Sao_Paulo'); //Timezone http://www.php.net/manual/pt_BR/timezones.php | ||
|
||
define('ENABLEPUSHOVERNOTIFY', false); //Habilita o envio de perguntas através do pushover para o palestrante | ||
|
||
|
||
define('PUSHOVERUSERNOTIFY','uLubKkACvqvM2nY38xd4SpBfQ3XEma'); //Seu usuário do Pushover | ||
|
||
define('PUSHOVERTOKENNOTIFY','aNyt8hP7fsJ4dQMUofrxSx9QKeiKdx'); //Seu token do Pushover | ||
|
||
|
||
define('ENABLEEMAILNOTIFY', false); //Habilita o envio de perguntas através de emails para o palestrante | ||
|
||
define('MAILNOTIFY','email@exemplo.com'); //Email a receber a mensagem | ||
|
||
define('FROMNOTIFY','email@exemplo.com'); //Email a enviar a mensagem | ||
|
||
$shownotas = false; | ||
|
||
$notas = "Linha1 | ||
Linha 2 | ||
[1]http://example.org"; | ||
|
||
?> |