diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2015-09-20 14:16:01 +0200 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2015-09-20 14:16:01 +0200 |
| commit | 20982df71e02e3526438368168e402eeb043d6ea (patch) | |
| tree | f4529a0d9958e0db05225f1e1e1a91a3bdb16f40 /phpBB/phpbb | |
| parent | 26f6f6208b65b4355a40add4c86013d9a8e085dd (diff) | |
| parent | ff6d590b3693c5a20f1626664bb92bb18f384d3a (diff) | |
| download | forums-20982df71e02e3526438368168e402eeb043d6ea.tar forums-20982df71e02e3526438368168e402eeb043d6ea.tar.gz forums-20982df71e02e3526438368168e402eeb043d6ea.tar.bz2 forums-20982df71e02e3526438368168e402eeb043d6ea.tar.xz forums-20982df71e02e3526438368168e402eeb043d6ea.zip | |
Merge pull request #3851 from hanakin/ticket/12769
[ticket/12769] Font-Awesome Integration & Icon overhaul
Diffstat (limited to 'phpBB/phpbb')
| -rw-r--r-- | phpBB/phpbb/db/migration/data/v320/font_awesome_update.php | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v320/font_awesome_update.php b/phpBB/phpbb/db/migration/data/v320/font_awesome_update.php new file mode 100644 index 0000000000..6ffaf18b4a --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v320/font_awesome_update.php @@ -0,0 +1,29 @@ +<?php +/** +* +* This file is part of the phpBB Forum Software package. +* +* @copyright (c) phpBB Limited <https://www.phpbb.com> +* @license GNU General Public License, version 2 (GPL-2.0) +* +* For full copyright and license information, please see +* the docs/CREDITS.txt file. +* +*/ + +namespace phpbb\db\migration\data\v320; + +class font_awesome_update extends \phpbb\db\migration\migration +{ + public function effectively_installed() + { + return isset($this->config['load_font_awesome_url']); + } + + public function update_data() + { + return array( + array('config.add', array('load_font_awesome_url', 'https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css')), + ); + } +} |
