-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.php
84 lines (84 loc) · 3.88 KB
/
footer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
/*
* Osclass – software for creating and publishing online classified
* advertising platforms
*
* Copyright (C) 2014 OSCLASS
*
* This program is free software: you can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License
* as published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
?>
</div><!-- content -->
<?php osc_run_hook('after-main'); ?>
</div>
<div id="responsive-trigger"></div>
<!-- footer -->
<div class="clear"></div>
<?php osc_show_widgets('footer');?>
<footer id="footer">
<div class="row wrapper">
<ul class="resp-toggle">
<?php if( osc_users_enabled() ) { ?>
<?php if( osc_is_web_user_logged_in() ) { ?>
<li>
<?php echo sprintf(__('Hi %s', 'osclassclsx'), osc_logged_user_name() . '!'); ?> ·
<strong><a href="<?php echo osc_user_dashboard_url(); ?>"><?php _e('My account', 'osclassclsx'); ?></a></strong> ·
<a href="<?php echo osc_user_logout_url(); ?>"><?php _e('Logout', 'osclassclsx'); ?></a>
</li>
<?php } else { ?>
<li><a href="<?php echo osc_user_login_url(); ?>"><?php _e('Login', 'osclassclsx'); ?></a></li>
<?php if(osc_user_registration_enabled()) { ?>
<li>
<a href="<?php echo osc_register_account_url(); ?>"><?php _e('Register for a free account', 'osclassclsx'); ?></a>
</li>
<?php } ?>
<?php } ?>
<?php } ?>
<?php if( osc_users_enabled() || ( !osc_users_enabled() && !osc_reg_user_post() )) { ?>
<li class="publish">
<a href="<?php echo osc_item_post_url_in_category(); ?>"><?php _e("Publish your ad for free", 'osclassclsx');?></a>
</li>
<?php } ?>
</ul>
<ul>
<?php
osc_reset_static_pages();
while( osc_has_static_pages() ) { ?>
<li>
<a href="<?php echo osc_static_page_url(); ?>"><?php echo osc_static_page_title(); ?></a>
</li>
<?php
}
?>
<li>
<a href="<?php echo osc_contact_url(); ?>"><?php _e('Contact', 'osclassclsx'); ?></a>
</li>
</ul>
<?php if( (!defined('MULTISITE') || MULTISITE==0) && osc_get_preference('footer_link', 'osclassclsx') !== '0') {
echo '<div>' . sprintf(__('This website is proudly using the <a title="Osclass web" href="%s">classifieds scripts</a> software <strong>Osclass</strong>'), 'http://osclass.org/') . '</div>';
}
?>
<?php if ( osc_count_web_enabled_locales() > 1) { ?>
<?php osc_goto_first_locale(); ?>
<strong><?php _e('Language:', 'osclassclsx'); ?></strong>
<?php $i = 0; ?>
<?php while ( osc_has_web_enabled_locales() ) { ?>
<span><a id="<?php echo osc_locale_code(); ?>" href="<?php echo osc_change_language_url ( osc_locale_code() ); ?>"><?php echo osc_locale_name(); ?></a></span><?php if( $i == 0 ) { echo " · "; } ?>
<?php $i++; ?>
<?php } ?>
<?php } ?>
</div>
</footer>
<?php osc_run_hook('footer'); ?>
</body></html>