Cambios en titulo, en boton fojas, y en indices online
This commit is contained in:
@ -8,8 +8,12 @@ return [
|
||||
'{folders.resources}',
|
||||
'cache'
|
||||
])),
|
||||
'folders.upload' => DI\string(implode(DIRECTORY_SEPARATOR, [
|
||||
'folders.public' => DI\string(implode(DIRECTORY_SEPARATOR, [
|
||||
'{folders.base}',
|
||||
'public'
|
||||
])),
|
||||
'folders.upload' => DI\string(implode(DIRECTORY_SEPARATOR, [
|
||||
'{folders.public}',
|
||||
'uploads'
|
||||
])),
|
||||
'folders.data' => DI\string(implode(DIRECTORY_SEPARATOR, [
|
||||
@ -38,14 +42,17 @@ return [
|
||||
'{urls.assets}',
|
||||
'fonts'
|
||||
])),
|
||||
'urls.uploads' => DI\string(implode('', [
|
||||
'file://',
|
||||
'{folders.upload}'
|
||||
'urls.uploads' => DI\string(implode('/', [
|
||||
'{urls.base}',
|
||||
'uploads'
|
||||
])),
|
||||
'urls.metro.logo' => 'https://img.freepik.com/free-icon/santiago-metro-logo_318-66588.jpg?size=338&ext=jpg',
|
||||
'urls.notaria.turno' => 'http://www.notariasdeturno.cl',
|
||||
'urls.fojas' => 'http://fojas.cl/?motv=vista_descarga_web&cons_sel=not_patricrabybenavent',
|
||||
'urls.atencion' => 'https://zeroq.cl/#/local/notaria-patricio-raby/48',
|
||||
'urls.atencion.logo' => 'https://zeroq.cl/img/logo-small.png',
|
||||
'urls.map' => 'https://maps.google.com/maps?hl=es&q=Notaria%20Patricio%20Raby+(Notaria%20Patricio%20Raby)&ie=UTF8&z=16&iwloc=B&output=embed',
|
||||
'urls.map2' => 'https://www.google.com/maps/embed/v1/place?q=notaria+patricio+raby&key=AIzaSyBFw0Qbyq9zTFTd-tUY6dZWTgaQzuU17R8',
|
||||
'styles' => [
|
||||
'https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.8.4/semantic.min.css',
|
||||
DI\string(implode('/', ['{urls.styles}', 'iconmoon.css'])),
|
||||
@ -66,6 +73,14 @@ return [
|
||||
DI\string(implode('/', ['{urls.fonts}', 'iconmoon.eof']))
|
||||
]
|
||||
],
|
||||
'email.recepcion' => 'recepcion@notariaraby.cl',
|
||||
'email.administrativo' => 'vwielandt@notariaraby.cl',
|
||||
'email' => [
|
||||
'host' => 'smtp.notariaraby.cl',
|
||||
'username' => '',
|
||||
'password' => '',
|
||||
'secure' => 'ssl'
|
||||
],
|
||||
'scripts' => [
|
||||
'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js',
|
||||
'https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.8.4/semantic.min.js',
|
||||
|
@ -18,6 +18,7 @@ return [
|
||||
'scripts' => $container->get('urls.scripts'),
|
||||
'fonts' => $container->get('urls.fonts')
|
||||
],
|
||||
'fojas' => $container->get('urls.fojas'),
|
||||
'notaria_turno' => $container->get('urls.notaria.turno'),
|
||||
'atencion' => (object) [
|
||||
'url' => $container->get('urls.atencion'),
|
||||
@ -36,5 +37,10 @@ return [
|
||||
$manager = new ProVM\Common\Service\Filemanager($c->get(Symfony\Component\Filesystem\Filesystem::class), $c->get('folders.upload'));
|
||||
$manager->addFolder('data', $c->get('folders.data'));
|
||||
return $manager;
|
||||
}
|
||||
},
|
||||
Nette\Mail\SendmailMailer::class => DI\create(),
|
||||
Nette\Mail\SmtpMailer::class => function(Container $c) {
|
||||
return new Nette\Mail\SmtpMailer($c->get('email'));
|
||||
},
|
||||
Nette\Mail\Message::class => DI\create()
|
||||
];
|
||||
|
Reference in New Issue
Block a user