svg
This commit is contained in:
parent
47e0c5f61c
commit
a60ccf2cac
|
@ -8,7 +8,7 @@ INSERT IGNORE INTO `niveau01` (`id`, `label`, `siren`) VALUES
|
|||
(-100, 'DRAAF', '130007107');
|
||||
|
||||
INSERT IGNORE INTO `user` (`id`, `niveau01_id`, `username`, `firstname`, `lastname`, `password`, `email`, `avatar`, `role`,`siren`,`authlevel`) VALUES
|
||||
(-100, -100, 'admin', 'Administrateur', 'draaf', '{SSHA}cj+q8n2VNxVgxAnOvUTqa4Omf/YCfNkC
|
||||
(-100, -100, 'admin', 'Administrateur', 'draaf', '{SSHA}XzeVqnrNOqCyH0z7F5gEVxBKwivMttoy
|
||||
', 'admin@transnum.cadol.es', 'admin.jpg', 'ROLE_ADMIN', '130007107', 'simple');
|
||||
|
||||
|
||||
|
@ -46,6 +46,9 @@ INSERT IGNORE INTO `sidebar` (`id`, `parent_id`, `roworder`, `label`, `path`, `f
|
|||
(2570, 2500, 2570, 'Chartes', 'cadoles_portal_config_notice', 'fa-info', 'ROLE_ADMIN,ROLE_MODO', 'notice_activate'),
|
||||
(2580, 2500, 2580, 'Icônes', 'cadoles_portal_config_icon', 'fa-bug', 'ROLE_ADMIN,ROLE_MODO', 'module_activate'),
|
||||
|
||||
(3000, NULL, 3000, 'SYNCHRONISATION', NULL, 'fa-exchange', 'ROLE_ADMIN,ROLE_MODO', 'syncenvole_activate'),
|
||||
(3120, 3000, 3120, 'Limesurvey', 'cadoles_portal_config_synclimesurvey', 'fa-question', 'ROLE_ADMIN,ROLE_MODO', 'activate_widlimesurvey'),
|
||||
|
||||
(7000, NULL, 7000, 'CRON', NULL, 'fa-bolt', 'ROLE_ADMIN', 'cron_activate'),
|
||||
(7010, 7000, 7010, 'Jobs', 'cadoles_cron_config', 'fa-bullseye', 'ROLE_ADMIN', 'cron_activate'),
|
||||
(7020, 7000, 7020, 'Logs', 'cadoles_cron_config_log', 'fa-list-alt', 'ROLE_ADMIN', 'cron_activate');
|
||||
|
|
|
@ -71,6 +71,9 @@
|
|||
$app["blog_activate"] =$this->container->getParameter('blog_activate');
|
||||
$app["flux_activate"] =$this->container->getParameter('flux_activate');
|
||||
$app["notice_activate"] =$this->container->getParameter('notice_activate');
|
||||
$app["syncenvole_activate"] =$this->container->getParameter('syncenvole_activate');
|
||||
$app["activate_widlimesurvey"] =$this->container->getParameter('activate_widlimesurvey');
|
||||
|
||||
|
||||
// Masteridentity
|
||||
$masteridentity =$this->container->getParameter('masteridentity');
|
||||
|
|
|
@ -333,4 +333,3 @@ cadoles_core_config_whitelist_ajax_list:
|
|||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -84,6 +84,11 @@ body {
|
|||
min-height: 40px;
|
||||
}
|
||||
|
||||
.navbar-right {
|
||||
position: absolute;
|
||||
right: 0px;
|
||||
}
|
||||
|
||||
.navbar-top-links li a {
|
||||
padding: 5px 10px;
|
||||
font-size: 18px;
|
||||
|
|
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
|
||||
namespace Cadoles\PortalBundle\Controller;
|
||||
|
||||
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
||||
use Symfony\Component\HttpFoundation\Session\Session;
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
use Symfony\Component\HttpFoundation\Response;
|
||||
use Symfony\Component\HttpFoundation\JsonResponse;
|
||||
use Symfony\Component\Form\FormError;
|
||||
|
||||
class SyncenvoleController extends Controller
|
||||
{
|
||||
public function limesurveyAction()
|
||||
{
|
||||
$url=$this->getParameter("widlimesurvey_syncenvole");
|
||||
$color=$this->get('session')->get('colormain');
|
||||
$themename=$this->get('session')->get("theme");
|
||||
|
||||
return $this->render('CadolesPortalBundle:Tool:frame.html.twig', [
|
||||
'useheader' => true,
|
||||
'usemenu' => false,
|
||||
'usesidebar' => true,
|
||||
'url' => $url."/synchro.php?app=limesurvey&color=#color#"
|
||||
]);
|
||||
}
|
||||
|
||||
}
|
|
@ -1,4 +1,10 @@
|
|||
|
||||
#== SYNCENVOLE ============================================================================================================
|
||||
|
||||
cadoles_portal_config_synclimesurvey:
|
||||
path: /config/syncenvole/limesurvey
|
||||
defaults: { _controller: CadolesPortalBundle:Syncenvole:limesurvey }
|
||||
|
||||
#== ICON =================================================================================================================================================
|
||||
cadoles_portal_config_icon:
|
||||
path: /config/icon
|
||||
|
|
|
@ -0,0 +1,48 @@
|
|||
{% extends '@CadolesCore/base.html.twig' %}
|
||||
|
||||
{% block localstyle %}
|
||||
#page-wrapper {padding:0px;}
|
||||
{% endblock %}
|
||||
|
||||
{% block pagewrapper %}
|
||||
{% set theme = app.session.get('theme') %}
|
||||
{% if theme is not empty %}
|
||||
{{ include('@Theme/'~theme~'/function.html.twig') }}
|
||||
{% endif %}
|
||||
{% set color = app.session.get('color') %}
|
||||
|
||||
<div id="pageiframe">
|
||||
<iframe src="{{url|replace({'#color#':color['main']}) }}" id="frameContent" style="border:none;" width="100%" height="100%"></iframe>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
{% block localjavascript %}
|
||||
$(window).resize(function() {
|
||||
resizeFrame();
|
||||
});
|
||||
|
||||
$('document').ready(function(){
|
||||
resizeFrame();
|
||||
});
|
||||
|
||||
function resizeFrame() {
|
||||
$("body").css("overflow-y","hidden");
|
||||
$(".col-md-10").css("padding","0");
|
||||
|
||||
var iFrame = document.getElementById('frameContent');
|
||||
|
||||
var heightbody = $('html').height();
|
||||
var heightheader = $('.header').height();
|
||||
if($('.pagemenu').css("display")=="none")
|
||||
var heightmenu = 0;
|
||||
else
|
||||
var heightmenu = $('.pagemenu').height();
|
||||
|
||||
|
||||
var heightframe = heightbody-heightheader-heightmenu;
|
||||
|
||||
if($("#frameContent").length>0) {
|
||||
$("#frameContent").height(heightframe);
|
||||
}
|
||||
}
|
||||
{% endblock %}
|
|
@ -5,11 +5,11 @@ SET time_zone = '+00:00';
|
|||
SET foreign_key_checks = 0;
|
||||
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
|
||||
|
||||
INSERT IGNORE INTO `niveau01` (`id`, `label`, `siren`, `showsubappname`) VALUES
|
||||
INSERT IGNORE INTO `niveau01` (`id`, `label`, `siren`) VALUES
|
||||
%if %%is_defined("ninegate_niveau01name")
|
||||
(-100, '%%ninegate_niveau01name', '%%ninegate_niveau01siren',0);
|
||||
(-100, '%%ninegate_niveau01name', '%%ninegate_niveau01siren');
|
||||
%else
|
||||
(-100, '%%libelle_etab', '%%numero_etab',0);
|
||||
(-100, '%%libelle_etab', '%%numero_etab');
|
||||
%end if
|
||||
|
||||
%if %%getVar("ninegate_syncldap", 'non') == "oui"
|
||||
|
@ -57,6 +57,9 @@ INSERT IGNORE INTO `sidebar` (`id`, `parent_id`, `roworder`, `label`, `path`, `f
|
|||
(2570, 2500, 2570, 'Chartes', 'cadoles_portal_config_notice', 'fa-info', 'ROLE_ADMIN,ROLE_MODO', 'notice_activate'),
|
||||
(2580, 2500, 2580, 'Icônes', 'cadoles_portal_config_icon', 'fa-bug', 'ROLE_ADMIN,ROLE_MODO', 'module_activate'),
|
||||
|
||||
(3000, NULL, 3000, 'SYNCHRONISATION', NULL, 'fa-exchange', 'ROLE_ADMIN,ROLE_MODO', 'syncenvole_activate'),
|
||||
(3120, 3000, 3120, 'Limesurvey', 'cadoles_portal_config_synclimesurvey', 'fa-question', 'ROLE_ADMIN,ROLE_MODO', 'activate_widlimesurvey'),
|
||||
|
||||
(7000, NULL, 7000, 'CRON', NULL, 'fa-bolt', 'ROLE_ADMIN', 'cron_activate'),
|
||||
(7010, 7000, 7010, 'Jobs', 'cadoles_cron_config', 'fa-bullseye', 'ROLE_ADMIN', 'cron_activate'),
|
||||
(7020, 7000, 7020, 'Logs', 'cadoles_cron_config_log', 'fa-list-alt', 'ROLE_ADMIN', 'cron_activate');
|
||||
|
|
Loading…
Reference in New Issue