Merge pull request #93 from llebegue/master
External parameter for favicon.ico
This commit is contained in:
commit
a1eb144b45
|
@ -41,32 +41,33 @@ class QvitterPlugin extends Plugin {
|
|||
public function settings($setting)
|
||||
{
|
||||
|
||||
/* · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · ·
|
||||
· ·
|
||||
· S E T T I N G S ·
|
||||
· ·
|
||||
/* · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · ·
|
||||
· ·
|
||||
· S E T T I N G S ·
|
||||
· ·
|
||||
· · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · */
|
||||
|
||||
// THESE SETTINGS CAN BE OVERRIDDEN IN CONFIG.PHP
|
||||
// e.g. $config['site']['qvitter']['enabledbydefault'] = 'false';
|
||||
|
||||
|
||||
// ENABLED BY DEFAULT (true/false)
|
||||
$settings['enabledbydefault'] = true;
|
||||
|
||||
// DEFAULT BACKGROUND COLOR
|
||||
$settings['defaultbackgroundcolor'] = '#f4f4f4';
|
||||
|
||||
// DEFAULT BACKGROUND IMAGE
|
||||
$settings['sitebackground'] = 'img/vagnsmossen.jpg';
|
||||
// DEFAULT BACKGROUND IMAGE
|
||||
$settings['sitebackground'] = 'img/vagnsmossen.jpg';
|
||||
|
||||
// DEFAULT FAVICON
|
||||
$settings['favicon'] = 'img/favicon.ico?v=4';
|
||||
|
||||
// DEFAULT LINK COLOR
|
||||
$settings['defaultlinkcolor'] = '#0084B4';
|
||||
|
||||
// TIME BETWEEN POLLING
|
||||
$settings['timebetweenpolling'] = 5000; // ms
|
||||
|
||||
|
||||
// URL SHORTENER
|
||||
$settings['urlshortenerapiurl'] = 'http://qttr.at/yourls-api.php';
|
||||
$settings['urlshortenersignature'] = 'b6afeec983';
|
||||
|
|
|
@ -54,6 +54,7 @@ $config['site']['qvitter']['timebetweenpolling'] = 5000;
|
|||
$config['site']['qvitter']['urlshortenerapiurl'] = 'http://qttr.at/yourls-api.php';
|
||||
$config['site']['qvitter']['urlshortenersignature'] = 'b6afeec983';
|
||||
$config['site']['qvitter']['sitebackground'] = 'img/vagnsmossen.jpg';
|
||||
$config['site']['qvitter']['favicon'] = 'img/favicon.ico?v=4';
|
||||
$config['thumbnail']['maxsize'] = 3000;
|
||||
````
|
||||
|
||||
|
|
|
@ -105,7 +105,7 @@ class QvitterAction extends ApiAction
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0">
|
||||
<link rel="stylesheet" type="text/css" href="<?php print $qvitterpath; ?>css/qvitter.css?changed=<?php print date('YmdHis',filemtime(QVITTERDIR.'/css/qvitter.css')); ?>" />
|
||||
<link rel="stylesheet" type="text/css" href="<?php print $qvitterpath; ?>css/jquery.minicolors.css" />
|
||||
<link rel="shortcut icon" type="image/x-icon" href="<?php print $qvitterpath; ?>/img/favicon.ico?v=4">
|
||||
<link rel="shortcut icon" type="image/x-icon" href="<?php print $qvitterpath; ?><?php print QvitterPlugin::settings("favicon"); ?>">
|
||||
<?php
|
||||
|
||||
// if qvitter is a webapp and this is a users url we add feeds
|
||||
|
|
10
js/lan.js
10
js/lan.js
|
@ -764,17 +764,17 @@ window.l.fr.moreSettings = 'Plus de paramètres';
|
|||
window.l.fr.otherServers = 'Sinon, vous pouvez créer un compte sur un autre serveur du réseau GNU social. <a href="http://federation.skilledtests.com/select_your_server.html">Comparaison</a>';
|
||||
window.l.fr.editMyProfile = 'Éditer le profil';
|
||||
window.l.fr.notifications = 'Notifications';
|
||||
window.l.fr.xFavedYourQueet = 'a ajouté votre avis à ses favoris ';
|
||||
window.l.fr.xRepeatedYourQueet = 'vous a répété ';
|
||||
window.l.fr.xFavedYourQueet = 'a ajouté votre avis à ses favoris';
|
||||
window.l.fr.xRepeatedYourQueet = 'vous a répété';
|
||||
window.l.fr.xStartedFollowingYou = 'a commencé à vous suivre';
|
||||
window.l.fr.followsYou = 'vous suit';
|
||||
window.l.fr.FAQ = 'FAQ';
|
||||
window.l.fr.inviteAFriend = 'Invite des ami·e·s !';
|
||||
window.l.fr.goToExternalProfile = 'Aller sur le profil complet';
|
||||
window.l.fr.cropAndSave = 'Recadrer et enregistrer';
|
||||
window.l.fr.showTerms = 'Read our Terms of Use';
|
||||
window.l.fr.ellipsisMore = 'More';
|
||||
window.l.fr.blockUser = 'Block {username}';
|
||||
window.l.fr.showTerms = 'Consulter les conditions d\'utilisation';
|
||||
window.l.fr.ellipsisMore = 'Plus';
|
||||
window.l.fr.blockUser = 'Bloquer {username}';
|
||||
|
||||
// deutsch
|
||||
window.l.de = new Object();
|
||||
|
|
Loading…
Reference in New Issue
Block a user