Themes updates
This commit is contained in:
parent
0a988ba83b
commit
f1f560452d
|
@ -73,6 +73,15 @@ HTML::formOpen(array('class'=>'uk-form-horizontal'));
|
||||||
'tip'=>''
|
'tip'=>''
|
||||||
));
|
));
|
||||||
|
|
||||||
|
HTML::formInputText(array(
|
||||||
|
'name'=>'instagram',
|
||||||
|
'label'=>'Instagram',
|
||||||
|
'value'=>$Site->googlePlus(),
|
||||||
|
'class'=>'uk-width-1-2 uk-form-medium',
|
||||||
|
'placeholder'=>'https://www.instagram.com/USERNAME',
|
||||||
|
'tip'=>''
|
||||||
|
));
|
||||||
|
|
||||||
HTML::formInputText(array(
|
HTML::formInputText(array(
|
||||||
'name'=>'github',
|
'name'=>'github',
|
||||||
'label'=>'Github',
|
'label'=>'Github',
|
||||||
|
|
|
@ -56,8 +56,8 @@ if(!defined('JSON_PRETTY_PRINT')) {
|
||||||
define('JSON_PRETTY_PRINT', 128);
|
define('JSON_PRETTY_PRINT', 128);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Alert status ok
|
// Protecting against Symlink attacks.
|
||||||
define('CHECK_SYMBOLIC_LINKS', FALSE);
|
define('CHECK_SYMBOLIC_LINKS', TRUE);
|
||||||
|
|
||||||
// Alert status ok
|
// Alert status ok
|
||||||
define('ALERT_STATUS_OK', 0);
|
define('ALERT_STATUS_OK', 0);
|
||||||
|
|
|
@ -27,6 +27,7 @@ class dbSite extends dbJSON
|
||||||
'twitter'=> array('inFile'=>false, 'value'=>''),
|
'twitter'=> array('inFile'=>false, 'value'=>''),
|
||||||
'facebook'=> array('inFile'=>false, 'value'=>''),
|
'facebook'=> array('inFile'=>false, 'value'=>''),
|
||||||
'googlePlus'=> array('inFile'=>false, 'value'=>''),
|
'googlePlus'=> array('inFile'=>false, 'value'=>''),
|
||||||
|
'instagram'=> array('inFile'=>false, 'value'=>''),
|
||||||
'github'=> array('inFile'=>false, 'value'=>'')
|
'github'=> array('inFile'=>false, 'value'=>'')
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -115,6 +116,11 @@ class dbSite extends dbJSON
|
||||||
return $this->getField('facebook');
|
return $this->getField('facebook');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function instagram()
|
||||||
|
{
|
||||||
|
return $this->getField('instagram');
|
||||||
|
}
|
||||||
|
|
||||||
public function github()
|
public function github()
|
||||||
{
|
{
|
||||||
return $this->getField('github');
|
return $this->getField('github');
|
||||||
|
|
|
@ -11,10 +11,23 @@
|
||||||
<!-- Footer -->
|
<!-- Footer -->
|
||||||
<section id="footer">
|
<section id="footer">
|
||||||
<ul class="icons">
|
<ul class="icons">
|
||||||
<!-- <li><a href="#" class="fa-twitter"><span class="label">Twitter</span></a></li> -->
|
|
||||||
<!-- <li><a href="#" class="fa-facebook"><span class="label">Facebook</span></a></li> -->
|
|
||||||
<!-- <li><a href="#" class="fa-instagram"><span class="label">Instagram</span></a></li> -->
|
|
||||||
<?php
|
<?php
|
||||||
|
if(trim($Site->twitter())) {
|
||||||
|
echo '<li><a href="'.$Site->twitter().'" class="fa-twitter"><span class="label">Twitter</span></a></li>';
|
||||||
|
}
|
||||||
|
|
||||||
|
if($Site->facebook()) {
|
||||||
|
echo '<li><a href="'.$Site->facebook().'" class="fa-facebook"><span class="label">Facebook</span></a></li>';
|
||||||
|
}
|
||||||
|
|
||||||
|
if($Site->instagram()) {
|
||||||
|
echo '<li><a href="'.$Site->instagram().'" class="fa-instagram"><span class="label">Instagram</span></a></li>';
|
||||||
|
}
|
||||||
|
|
||||||
|
if($Site->github()) {
|
||||||
|
echo '<li><a href="'.$Site->github().'" class="fa-github"><span class="label">Github</span></a></li>';
|
||||||
|
}
|
||||||
|
|
||||||
if( $plugins['all']['pluginRSS']->installed() ) {
|
if( $plugins['all']['pluginRSS']->installed() ) {
|
||||||
echo '<li><a href="'.DOMAIN_BASE.'rss.xml'.'" class="fa-rss"><span class="label">RSS</span></a></li>';
|
echo '<li><a href="'.DOMAIN_BASE.'rss.xml'.'" class="fa-rss"><span class="label">RSS</span></a></li>';
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,5 +11,32 @@
|
||||||
|
|
||||||
<!-- Footer -->
|
<!-- Footer -->
|
||||||
<section id="footer">
|
<section id="footer">
|
||||||
|
<ul class="icons">
|
||||||
|
<?php
|
||||||
|
if($Site->twitter()) {
|
||||||
|
echo '<li><a href="'.$Site->twitter().'" class="fa-twitter"><span class="label">Twitter</span></a></li>';
|
||||||
|
}
|
||||||
|
|
||||||
|
if($Site->facebook()) {
|
||||||
|
echo '<li><a href="'.$Site->facebook().'" class="fa-facebook"><span class="label">Facebook</span></a></li>';
|
||||||
|
}
|
||||||
|
|
||||||
|
if($Site->instagram()) {
|
||||||
|
echo '<li><a href="'.$Site->instagram().'" class="fa-instagram"><span class="label">Instagram</span></a></li>';
|
||||||
|
}
|
||||||
|
|
||||||
|
if($Site->github()) {
|
||||||
|
echo '<li><a href="'.$Site->github().'" class="fa-github"><span class="label">Github</span></a></li>';
|
||||||
|
}
|
||||||
|
|
||||||
|
if( $plugins['all']['pluginRSS']->installed() ) {
|
||||||
|
echo '<li><a href="'.DOMAIN_BASE.'rss.xml'.'" class="fa-rss"><span class="label">RSS</span></a></li>';
|
||||||
|
}
|
||||||
|
|
||||||
|
if( $plugins['all']['pluginSitemap']->installed() ) {
|
||||||
|
echo '<li><a href="'.DOMAIN_BASE.'sitemap.xml'.'" class="fa-sitemap"><span class="label">Sitemap</span></a></li>';
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</ul>
|
||||||
<p class="copyright"><?php echo $Site->footer() ?> | Design: <a href="http://html5up.net">HTML5 UP</a></p>
|
<p class="copyright"><?php echo $Site->footer() ?> | Design: <a href="http://html5up.net">HTML5 UP</a></p>
|
||||||
</section>
|
</section>
|
Loading…
Reference in New Issue