inital commit
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
/**
|
||||
* Open Source Social Network
|
||||
*
|
||||
* @package (Informatikon.com).ossn
|
||||
* @author OSSN Core Team <info@opensource-socialnetwork.org>
|
||||
* @copyright 2014 iNFORMATIKON TECHNOLOGIES
|
||||
* @license General Public Licence http://www.opensource-socialnetwork.org/licence
|
||||
* @link http://www.opensource-socialnetwork.org/licence
|
||||
*/
|
||||
?>
|
||||
<div class="ossn-layout-admin">
|
||||
<?php echo ossn_plugin_view('theme/page/elements/system_messages', array(
|
||||
'admin' => true
|
||||
));
|
||||
?>
|
||||
<div class="row">
|
||||
<div class="page-title"><?php echo $params['title']; ?></div>
|
||||
<div class="col-md-12 contents">
|
||||
<?php echo $params['contents']; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
22
plugins/default/theme/page/layout/administrator/login.php
Normal file
22
plugins/default/theme/page/layout/administrator/login.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
/**
|
||||
* Open Source Social Network
|
||||
*
|
||||
* @package (Informatikon.com).ossn
|
||||
* @author OSSN Core Team <info@opensource-socialnetwork.org>
|
||||
* @copyright 2014 iNFORMATIKON TECHNOLOGIES
|
||||
* @license General Public Licence http://www.opensource-socialnetwork.org/licence
|
||||
* @link http://www.opensource-socialnetwork.org/licence
|
||||
*/
|
||||
?>
|
||||
<div class="ossn-layout-admin">
|
||||
<?php echo ossn_plugin_view('theme/page/elements/system_messages', array(
|
||||
'admin' => true
|
||||
));
|
||||
?>
|
||||
<div class="row">
|
||||
<div class="col-md-12 contents">
|
||||
<?php echo $params['contents']; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
20
plugins/default/theme/page/layout/contents.php
Normal file
20
plugins/default/theme/page/layout/contents.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
/**
|
||||
* Open Source Social Network
|
||||
*
|
||||
* @packageOpen Source Social Network
|
||||
* @author Open Social Website Core Team <info@informatikon.com>
|
||||
* @copyright 2014 iNFORMATIKON TECHNOLOGIES
|
||||
* @license General Public Licence http://www.opensource-socialnetwork.org/licence
|
||||
* @link http://www.opensource-socialnetwork.org/licence
|
||||
*/
|
||||
?>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="ossn-layout-contents">
|
||||
<?php echo ossn_plugin_view('theme/page/elements/system_messages'); ?>
|
||||
<?php echo $params['content']; ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo ossn_plugin_view('theme/page/elements/footer');?>
|
||||
</div>
|
||||
41
plugins/default/theme/page/layout/media.php
Normal file
41
plugins/default/theme/page/layout/media.php
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
/**
|
||||
* Open Source Social Network
|
||||
*
|
||||
* @package (Informatikon.com).ossn
|
||||
* @author OSSN Core Team <info@opensource-socialnetwork.org>
|
||||
* @copyright 2014 iNFORMATIKON TECHNOLOGIES
|
||||
* @license General Public Licence http://www.opensource-socialnetwork.org/licence
|
||||
* @link http://www.opensource-socialnetwork.org/licence
|
||||
*/
|
||||
|
||||
//unused pagebar skeleton when ads are disabled #628
|
||||
if(com_is_active('OssnAds')){
|
||||
$ads = ossn_plugin_view('ads/page/view');
|
||||
$ads = trim($ads);
|
||||
}
|
||||
?>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<?php echo ossn_plugin_view('theme/page/elements/system_messages'); ?>
|
||||
<div class="ossn-layout-media">
|
||||
<div class="row">
|
||||
<div class="col-md-8">
|
||||
<div class="content">
|
||||
<?php echo $params['content']; ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<?php if(!empty($ads)){ ?>
|
||||
<div class="page-sidebar">
|
||||
<?php
|
||||
echo $ads;
|
||||
?>
|
||||
</div>
|
||||
<?php } ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo ossn_plugin_view('theme/page/elements/footer');?>
|
||||
</div>
|
||||
26
plugins/default/theme/page/layout/module.php
Normal file
26
plugins/default/theme/page/layout/module.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
/**
|
||||
* Open Source Social Network
|
||||
*
|
||||
* @package (Informatikon.com).ossn
|
||||
* @author OSSN Core Team <info@opensource-socialnetwork.org>
|
||||
* @copyright 2014 iNFORMATIKON TECHNOLOGIES
|
||||
* @license General Public Licence http://www.opensource-socialnetwork.org/licence
|
||||
* @link http://www.opensource-socialnetwork.org/licence
|
||||
*/
|
||||
$params['controls'] = (isset($params['controls'])) ? $params['controls'] : '';
|
||||
|
||||
?>
|
||||
<div class="col-md-11">
|
||||
<div class="ossn-layout-module">
|
||||
<div class="module-title">
|
||||
<div class="title"><?php echo $params['title']; ?></div>
|
||||
<div class="controls">
|
||||
<?php echo $params['controls']; ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="module-contents">
|
||||
<?php echo $params['content']; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
40
plugins/default/theme/page/layout/newsfeed.php
Normal file
40
plugins/default/theme/page/layout/newsfeed.php
Normal file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/**
|
||||
* Open Source Social Network
|
||||
*
|
||||
* @package (Informatikon.com).ossn
|
||||
* @author OSSN Core Team <info@opensource-socialnetwork.org>
|
||||
* @copyright 2014 iNFORMATIKON TECHNOLOGIES
|
||||
* @license General Public Licence http://www.opensource-socialnetwork.org/licence
|
||||
* @link http://www.opensource-socialnetwork.org/licence
|
||||
*/
|
||||
|
||||
//unused pagebar skeleton when ads are disabled #628
|
||||
if(ossn_is_hook('newsfeed', "sidebar:right")) {
|
||||
$newsfeed_right = ossn_call_hook('newsfeed', "sidebar:right", NULL, array());
|
||||
$sidebar = implode('', $newsfeed_right);
|
||||
$isempty = trim($sidebar);
|
||||
}
|
||||
?>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<?php echo ossn_plugin_view('theme/page/elements/system_messages'); ?>
|
||||
<div class="ossn-layout-newsfeed">
|
||||
<div class="col-md-7">
|
||||
<div class="newsfeed-middle">
|
||||
<?php echo $params['content']; ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<?php if(!empty($isempty)){ ?>
|
||||
<div class="newsfeed-right">
|
||||
<?php
|
||||
echo $sidebar;
|
||||
?>
|
||||
</div>
|
||||
<?php } ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo ossn_plugin_view('theme/page/elements/footer');?>
|
||||
</div>
|
||||
50
plugins/default/theme/page/layout/search.php
Normal file
50
plugins/default/theme/page/layout/search.php
Normal file
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
/**
|
||||
* Open Source Social Network
|
||||
*
|
||||
* @package (Informatikon.com).ossn
|
||||
* @author OSSN Core Team <info@opensource-socialnetwork.org>
|
||||
* @copyright 2014 iNFORMATIKON TECHNOLOGIES
|
||||
* @license General Public Licence http://www.opensource-socialnetwork.org/licence
|
||||
* @link http://www.opensource-socialnetwork.org/licence
|
||||
*/
|
||||
|
||||
//unused pagebar skeleton when ads are disabled #628
|
||||
if(ossn_is_hook('newsfeed', "sidebar:right")) {
|
||||
$newsfeed_right = ossn_call_hook('newsfeed', "sidebar:right", NULL, array());
|
||||
$sidebar = implode('', $newsfeed_right);
|
||||
$isempty = trim($sidebar);
|
||||
}
|
||||
?>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<?php echo ossn_plugin_view('theme/page/elements/system_messages'); ?>
|
||||
<div class="ossn-layout-newsfeed">
|
||||
<div class="col-md-2">
|
||||
<div class="coloum-left ossn-page-contents">
|
||||
<?php
|
||||
if (ossn_is_hook('search', "left")) {
|
||||
$searchleft = ossn_call_hook('search', "left", NULL, array());
|
||||
echo implode('', $searchleft);
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="newsfeed-middle ossn-page-contents">
|
||||
<?php echo $params['content']; ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<?php if(!empty($isempty)){ ?>
|
||||
<div class="newsfeed-right">
|
||||
<?php
|
||||
echo $sidebar;
|
||||
?>
|
||||
</div>
|
||||
<?php } ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo ossn_plugin_view('theme/page/elements/footer');?>
|
||||
</div>
|
||||
24
plugins/default/theme/page/layout/startup.php
Normal file
24
plugins/default/theme/page/layout/startup.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
/**
|
||||
* Open Source Social Network
|
||||
*
|
||||
* @packageOpen Source Social Network
|
||||
* @author Open Social Website Core Team <info@informatikon.com>
|
||||
* @copyright 2014 iNFORMATIKON TECHNOLOGIES
|
||||
* @license General Public Licence http://www.opensource-socialnetwork.org/licence
|
||||
* @link http://www.opensource-socialnetwork.org/licence
|
||||
*/
|
||||
?>
|
||||
<div class="ossn-layout-startup">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<?php echo ossn_plugin_view('theme/page/elements/system_messages'); ?>
|
||||
<div class="ossn-home-container">
|
||||
<div class="inner">
|
||||
<?php echo $params['content']; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo ossn_plugin_view('theme/page/elements/footer');?>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user