Merge pull request #477 from Turqueso/bluditv2
Added Codepen to Social Medial
This commit is contained in:
commit
074052492a
|
@ -91,6 +91,14 @@ if($Login->role()==='admin') {
|
||||||
'tip'=>''
|
'tip'=>''
|
||||||
));
|
));
|
||||||
|
|
||||||
|
HTML::formInputText(array(
|
||||||
|
'name'=>'codepen',
|
||||||
|
'label'=>'Codepen',
|
||||||
|
'value'=>$User->codepen(),
|
||||||
|
'class'=>'uk-width-1-2 uk-form-medium',
|
||||||
|
'tip'=>''
|
||||||
|
));
|
||||||
|
|
||||||
HTML::formInputText(array(
|
HTML::formInputText(array(
|
||||||
'name'=>'googlePlus',
|
'name'=>'googlePlus',
|
||||||
'label'=>'Google+',
|
'label'=>'Google+',
|
||||||
|
|
|
@ -62,6 +62,14 @@ HTML::formOpen(array('class'=>'uk-form-horizontal'));
|
||||||
'tip'=>''
|
'tip'=>''
|
||||||
));
|
));
|
||||||
|
|
||||||
|
HTML::formInputText(array(
|
||||||
|
'name'=>'codepen',
|
||||||
|
'label'=>'Codepen',
|
||||||
|
'value'=>$Site->codepen(),
|
||||||
|
'class'=>'uk-width-1-2 uk-form-medium',
|
||||||
|
'tip'=>''
|
||||||
|
));
|
||||||
|
|
||||||
HTML::formInputText(array(
|
HTML::formInputText(array(
|
||||||
'name'=>'googlePlus',
|
'name'=>'googlePlus',
|
||||||
'label'=>'Google+',
|
'label'=>'Google+',
|
||||||
|
|
|
@ -26,6 +26,7 @@ class dbSite extends dbJSON
|
||||||
'currentBuild'=> array('inFile'=>false, 'value'=>0),
|
'currentBuild'=> array('inFile'=>false, 'value'=>0),
|
||||||
'twitter'=> array('inFile'=>false, 'value'=>''),
|
'twitter'=> array('inFile'=>false, 'value'=>''),
|
||||||
'facebook'=> array('inFile'=>false, 'value'=>''),
|
'facebook'=> array('inFile'=>false, 'value'=>''),
|
||||||
|
'codepen'=> array('inFile'=>false, 'value'=>''),
|
||||||
'googlePlus'=> array('inFile'=>false, 'value'=>''),
|
'googlePlus'=> array('inFile'=>false, 'value'=>''),
|
||||||
'instagram'=> array('inFile'=>false, 'value'=>''),
|
'instagram'=> array('inFile'=>false, 'value'=>''),
|
||||||
'github'=> array('inFile'=>false, 'value'=>''),
|
'github'=> array('inFile'=>false, 'value'=>''),
|
||||||
|
@ -101,6 +102,11 @@ class dbSite extends dbJSON
|
||||||
return $this->getField('facebook');
|
return $this->getField('facebook');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function codepen()
|
||||||
|
{
|
||||||
|
return $this->getField('codepen');
|
||||||
|
}
|
||||||
|
|
||||||
public function instagram()
|
public function instagram()
|
||||||
{
|
{
|
||||||
return $this->getField('instagram');
|
return $this->getField('instagram');
|
||||||
|
|
|
@ -17,6 +17,7 @@ class dbUsers extends dbJSON
|
||||||
'tokenAuthTTL'=> array('inFile'=>false, 'value'=>'2009-03-15 14:00'),
|
'tokenAuthTTL'=> array('inFile'=>false, 'value'=>'2009-03-15 14:00'),
|
||||||
'twitter'=> array('inFile'=>false, 'value'=>''),
|
'twitter'=> array('inFile'=>false, 'value'=>''),
|
||||||
'facebook'=> array('inFile'=>false, 'value'=>''),
|
'facebook'=> array('inFile'=>false, 'value'=>''),
|
||||||
|
'codepen'=> array('inFile'=>false, 'value'=>''),
|
||||||
'googlePlus'=> array('inFile'=>false, 'value'=>''),
|
'googlePlus'=> array('inFile'=>false, 'value'=>''),
|
||||||
'instagram'=> array('inFile'=>false, 'value'=>'')
|
'instagram'=> array('inFile'=>false, 'value'=>'')
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue