Skip to content

Commit

Permalink
Merge pull request #1059 from ngodfraind/master
Browse files Browse the repository at this point in the history
version + removing method from importer abstract class
  • Loading branch information
ngodfraind committed Mar 13, 2015
2 parents 955f8bf + fd4379c commit 451a258
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions Library/Transfert/ConfigurationBuilders/GroupsImporter.php
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,11 @@ public function export(Workspace $workspace, array &$files, $object)
return array();
}

public function import(array $data)
{

}

public static function nameAlreadyExistsInDatabase($v, $groups)
{
return in_array($v, $groups);
Expand Down
2 changes: 1 addition & 1 deletion Library/Transfert/Importer.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,4 +136,4 @@ abstract function validate(array $data);
* @param mixed $object
*/
abstract function export(Workspace $workspace, array &$files, $object);
}
}
2 changes: 1 addition & 1 deletion Resources/views/Layout/footer.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<span class="pull-right locale-select label label-default">{{ app.request.locale | upper }}</span>
{% endif %}

{% if not footerMessage is empty %}{{ footerMessage|raw }}{% endif %}
{% if footerMessage is defined and footerMessage %}{{ footerMessage|raw }}{% endif %}
<span{% if ((footerLogin or footerWorkspaces) and not is_granted('ROLE_USER')) or not footerMessage is empty %} class="pull-right"{% endif %}>
{{ 'Powered by' | trans({}, 'platform') }} <a href="http://www.claroline.net">Claroline</a> (v{{ coreVersion }})
</span>
Expand Down

0 comments on commit 451a258

Please sign in to comment.