svg
This commit is contained in:
parent
2fea902837
commit
8147233340
|
@ -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}Y6RhE3PXKWEdWAZEO+BbtDgjuF5wzJAM
|
||||
(-100, -100, 'admin', 'Administrateur', 'draaf', '{SSHA}7d5OuaGuX92B8iwYzkNe1P7C4reX07En
|
||||
', 'admin@ldapbundle.ac-arno.fr', 'admin.jpg', 'ROLE_ADMIN', '130007107', 'simple');
|
||||
|
||||
|
||||
|
|
|
@ -40,6 +40,7 @@ class InitDataCommand extends ContainerAwareCommand
|
|||
|
||||
$activate_widlimesurvey = $this->getContainer()->getParameter('activate_widlimesurvey');
|
||||
$activate_widmoodle = $this->getContainer()->getParameter('activate_widmoodle');
|
||||
$activate_widnextcloud = $this->getContainer()->getParameter('activate_widnextcloud');
|
||||
$activate_widopensondage = $this->getContainer()->getParameter('activate_widopensondage');
|
||||
$activate_widpiwik = $this->getContainer()->getParameter('activate_widpiwik');
|
||||
$activate_widwordpress = $this->getContainer()->getParameter('activate_widwordpress');
|
||||
|
@ -335,6 +336,26 @@ class InitDataCommand extends ContainerAwareCommand
|
|||
$em->persist($entityItem);
|
||||
}
|
||||
|
||||
// Item Nextcloud
|
||||
if($activate_widnextcloud) {
|
||||
$widnextcloud_url =$this->getContainer()->getParameter('widnextcloud_url');
|
||||
$entityItem = $em->getRepository('CadolesPortalBundle:Item')->find(-366);
|
||||
if(!$entityItem) {
|
||||
$entityicon = $em->getRepository('CadolesPortalBundle:Icon')->findoneby(["label"=>"uploads/icon/icon_nextcloud.png"]);
|
||||
|
||||
$entityItem = new Item();
|
||||
$entityItem->setId(-366);
|
||||
$entityItem->setRowOrder(0);
|
||||
$entityItem->setTitle('Nextcloud');
|
||||
$entityItem->SetSubtitle("Stockage de Fichiers");
|
||||
$entityItem->setIcon($entityicon);
|
||||
$entityItem->setColor("f15a22");
|
||||
$entityItem->setTarget("_blank");
|
||||
$entityItem->setItemcategory($entityItemcategoryapp);
|
||||
}
|
||||
$entityItem->setUrl($widnextcloud_url);
|
||||
$em->persist($entityItem);
|
||||
}
|
||||
|
||||
//== WIDGET ============================================================================================================================================
|
||||
$output->writeln(' > Creation Widget');
|
||||
|
|
|
@ -30,12 +30,6 @@ class ChatType extends AbstractType
|
|||
'mapped'=> false,
|
||||
'required' => false,
|
||||
'config' => ["height" => "100px",'filebrowserUploadRoute' => 'cadoles_portal_user_pagewidget_upload'],
|
||||
'plugins' => array(
|
||||
'wordcount' => array(
|
||||
'path' => '/ckeditor/plugins/divarea/', // with trailing slash
|
||||
'filename' => 'plugin.js',
|
||||
),
|
||||
),
|
||||
]);
|
||||
|
||||
$builder
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 7.1 KiB |
|
@ -195,6 +195,13 @@ parameters:
|
|||
activate_widmoodle: false
|
||||
%end if
|
||||
|
||||
%if %%getVar("ninegate_activate_widnextcloud", 'non') == "oui"
|
||||
activate_widnextcloud: true
|
||||
widnextcloud_url: %%ninegate_widnextcloud_url
|
||||
%else
|
||||
activate_widnextcloud: false
|
||||
%end if
|
||||
|
||||
%if %%getVar("ninegate_activate_widopensondage", 'non') == "oui"
|
||||
activate_widopensondage: true
|
||||
widopensondage_url: %%ninegate_widopensondage_url
|
||||
|
|
Loading…
Reference in New Issue