qa-theme.php 19.9 KB
Newer Older
Scott committed
1 2
<?php
/*
3 4 5
	Snow Theme for Question2Answer Package
	Copyright (C) 2014 Q2A Market <http://www.q2amarket.com>

Scott committed
6 7 8
	File:           qa-theme.php
	Version:        Snow 1.4
	Description:    Q2A theme class
9 10 11 12 13 14 15 16 17 18

	This program is free software: you can redistribute it and/or modify
	it under the terms of the GNU 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 General Public License for more details.
Scott committed
19
*/
Scott committed
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36

/**
 * Snow theme extends
 *
 * Extends the core theme class <code>qa_html_theme_base</code>
 *
 * @package qa_html_theme_base
 * @subpackage qa_html_theme
 * @category Theme
 * @since Snow 1.0
 * @version 1.4
 * @author Q2A Market <http://www.q2amarket.com>
 * @copyright (c) 2014, Q2A Market
 * @license http://www.gnu.org/copyleft/gpl.html
 */
class qa_html_theme extends qa_html_theme_base
{
37 38
	protected $theme = 'snowflat';

39 40 41
	// use local font files instead of Google Fonts
	private $localfonts = true;

pupi1985 committed
42
	// theme subdirectories
43 44
	private $js_dir = 'js';
	private $icon_url = 'images/icons';
45 46

	private $fixed_topbar = false;
47
	private $welcome_widget_class = 'wet-asphalt';
48
	private $ask_search_box_class = 'turquoise';
49
	// Size of the user avatar in the navigation bar
50
	private $nav_bar_avatar_size = 52;
51

52
	// use new block layout in rankings
53 54
	protected $ranking_block_layout = true;

Scott committed
55 56 57 58 59 60 61
	/**
	 * Adding aditional meta for responsive design
	 *
	 * @since Snow 1.4
	 */
	public function head_metas()
	{
Scott committed
62
		$this->output('<meta name="viewport" content="width=device-width, initial-scale=1"/>');
63
		parent::head_metas();
Scott committed
64 65 66 67 68 69 70 71 72
	}

	/**
	 * Adding theme stylesheets
	 *
	 * @since Snow 1.4
	 */
	public function head_css()
	{
73
		// add RTL CSS file
74
		if ($this->isRTL)
Scott committed
75
			$this->content['css_src'][] = $this->rooturl . 'qa-styles-rtl.css?' . QA_VERSION;
76

77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
		if ($this->localfonts) {
			// add Ubuntu font locally (inlined for speed)
			$this->output_array(array(
				'<style>',
				'@font-face {',
				' font-family: "Ubuntu"; font-style: normal; font-weight: 400;',
				' src: local("Ubuntu"), url("' . $this->rooturl . 'fonts/Ubuntu-regular.woff") format("woff");',
				'}',
				'@font-face {',
				' font-family: "Ubuntu"; font-style: normal; font-weight: 700;',
				' src: local("Ubuntu Bold"), local("Ubuntu-Bold"), url("' . $this->rooturl . 'fonts/Ubuntu-700.woff") format("woff");',
				'}',
				'@font-face {',
				' font-family: "Ubuntu"; font-style: italic; font-weight: 400;',
				' src: local("Ubuntu Italic"), local("Ubuntu-Italic"), url("' . $this->rooturl . 'fonts/Ubuntu-italic.woff") format("woff");',
				'}',
				'@font-face {',
				' font-family: "Ubuntu"; font-style: italic; font-weight: 700;',
				' src: local("Ubuntu Bold Italic"), local("Ubuntu-BoldItalic"), url("' . $this->rooturl . 'fonts/Ubuntu-700italic.woff") format("woff");',
				'}',
				'</style>',
			));
		}
		else {
			// add Ubuntu font CSS file from Google Fonts
			$this->content['css_src'][] = 'https://fonts.googleapis.com/css?family=Ubuntu:400,400i,700,700i';
		}
Scott committed
104

105
		parent::head_css();
Scott committed
106 107

		// output some dynamic CSS inline
108
		$this->head_inline_css();
Scott committed
109 110 111 112 113 114 115 116 117
	}

	/**
	 * Adding theme javascripts
	 *
	 * @since Snow 1.4
	 */
	public function head_script()
	{
118
		$jsUrl = $this->rooturl . $this->js_dir . '/snow-core.js?' . QA_VERSION;
Scott committed
119 120
		$this->content['script'][] = '<script src="' . $jsUrl . '"></script>';

121
		parent::head_script();
Scott committed
122 123 124 125 126 127 128 129 130
	}

	/**
	 * Adding point count for logged in user
	 *
	 * @since Snow 1.4
	 */
	public function logged_in()
	{
131
		parent::logged_in();
132 133 134 135
		if (qa_is_logged_in()) {
			$userpoints = qa_get_logged_in_points();
			$pointshtml = $userpoints == 1
				? qa_lang_html_sub('main/1_point', '1', '1')
Scott committed
136
				: qa_html(qa_format_number($userpoints))
137 138 139
			;
			$this->output('<div class="qam-logged-in-points">' . $pointshtml . '</div>');
		}
Scott committed
140 141 142
	}

	/**
143
	 * Adding body class dynamically. Override needed to add class on admin/approve-users page
Scott committed
144 145 146 147 148 149
	 *
	 * @since Snow 1.4
	 */
	public function body_tags()
	{
		$class = 'qa-template-' . qa_html($this->template);
150
		$class .= empty($this->theme) ? '' : ' qa-theme-' . qa_html($this->theme);
Scott committed
151 152

		if (isset($this->content['categoryids'])) {
Scott committed
153
			foreach ($this->content['categoryids'] as $categoryid) {
Scott committed
154
				$class .= ' qa-category-' . qa_html($categoryid);
Scott committed
155
			}
Scott committed
156 157
		}

Scott committed
158
		// add class if admin/approve-users page
159
		if ($this->template === 'admin' && qa_request_part(1) === 'approve')
Scott committed
160 161
			$class .= ' qam-approve-users';

162 163
		if ($this->fixed_topbar)
			$class .= ' qam-body-fixed';
Scott committed
164 165 166 167 168

		$this->output('class="' . $class . ' qa-body-js-off"');
	}

	/**
169
	 * Login form for user dropdown menu.
Scott committed
170 171 172 173 174 175 176 177
	 *
	 * @since Snow 1.4
	 */
	public function nav_user_search()
	{
		// outputs login form if user not logged in
		$this->output('<div class="qam-account-items-wrapper">');

Scott committed
178
		$this->qam_user_account();
Scott committed
179 180 181 182

		$this->output('<div class="qam-account-items clearfix">');

		if (!qa_is_logged_in()) {
183 184
			if (isset($this->content['navigation']['user']['login']) && !QA_FINAL_EXTERNAL_USERS) {
				$login = $this->content['navigation']['user']['login'];
Scott committed
185
				$this->output(
186
					'<form action="' . $login['url'] . '" method="post">',
187
						'<input type="text" name="emailhandle" dir="auto" placeholder="' . trim(qa_lang_html(qa_opt('allow_login_email_only') ? 'users/email_label' : 'users/email_handle_label'), ':') . '"/>',
Scott committed
188 189
						'<input type="password" name="password" dir="auto" placeholder="' . trim(qa_lang_html('users/password_label'), ':') . '"/>',
						'<div><input type="checkbox" name="remember" id="qam-rememberme" value="1"/>',
190
						'<label for="qam-rememberme">' . qa_lang_html('users/remember') . '</label></div>',
Scott committed
191 192
						'<input type="hidden" name="code" value="' . qa_html(qa_get_form_security_code('login')) . '"/>',
						'<input type="submit" value="' . $login['label'] . '" class="qa-form-tall-button qa-form-tall-button-login" name="dologin"/>',
193
					'</form>'
Scott committed
194
				);
195 196 197

				// remove regular navigation link to log in page
				unset($this->content['navigation']['user']['login']);
Scott committed
198 199 200
			}
		}

201
		$this->nav('user');
Scott committed
202 203 204 205 206
		$this->output('</div> <!-- END qam-account-items -->');
		$this->output('</div> <!-- END qam-account-items-wrapper -->');
	}

	/**
207
	 * Modify markup for topbar.
Scott committed
208 209 210 211 212 213 214
	 *
	 * @since Snow 1.4
	 */
	public function nav_main_sub()
	{
		$this->output('<div class="qam-main-nav-wrapper clearfix">');
		$this->output('<div class="sb-toggle-left qam-menu-toggle"><i class="icon-th-list"></i></div>');
Scott committed
215
		$this->nav_user_search();
Scott committed
216 217 218 219 220 221 222
		$this->logo();
		$this->nav('main');
		$this->output('</div> <!-- END qam-main-nav-wrapper -->');
		$this->nav('sub');
	}

	/**
223
	 * Remove the '-' from the note for the category page (notes).
Scott committed
224 225
	 *
	 * @since Snow 1.4
226 227
	 * @param array $navlink
	 * @param string $class
Scott committed
228 229 230
	 */
	public function nav_link($navlink, $class)
	{
231
		if (isset($navlink['note']) && !empty($navlink['note'])) {
232
			$search = array(' - <', '> - ');
Scott committed
233
			$replace = array(' <', '> ');
234
			$navlink['note'] = str_replace($search, $replace, $navlink['note']);
Scott committed
235
		}
236
		parent::nav_link($navlink, $class);
Scott committed
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
	}

	/**
	 * Rearranges the layout:
	 * - Swaps the <tt>main()</tt> and <tt>sidepanel()</tt> functions
	 * - Moves the header and footer functions outside qa-body-wrapper
	 * - Keeps top/high and low/bottom widgets separated
	 *
	 * @since Snow 1.4
	 */
	public function body_content()
	{
		$this->body_prefix();
		$this->notices();

		$this->widgets('full', 'top');
		$this->header();

		$this->output('<div class="qa-body-wrapper">', '');
		$this->widgets('full', 'high');

		$this->output('<div class="qa-main-wrapper">', '');
		$this->main();
		$this->sidepanel();
		$this->output('</div> <!-- END main-wrapper -->');

		$this->widgets('full', 'low');
		$this->output('</div> <!-- END body-wrapper -->');

		$this->footer();

		$this->body_suffix();
	}

	/**
	 * Header in full width top bar
	 *
	 * @since Snow 1.4
	 */
	public function header()
	{
278
		$class = $this->fixed_topbar ? ' fixed' : '';
Scott committed
279

Scott committed
280 281
		$this->output('<div id="qam-topbar" class="clearfix' . $class . '">');

Scott committed
282
		$this->nav_main_sub();
283
		$this->output('</div> <!-- END qam-topbar -->');
Scott committed
284

285
		$this->output($this->ask_button());
Scott committed
286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
		$this->qam_search('the-top', 'the-top-search');
	}

	/**
	 * Footer in full width bottom bar
	 *
	 * @since Snow 1.4
	 */
	public function footer()
	{
		$this->output('<div class="qam-footer-box">');

		$this->output('<div class="qam-footer-row">');
		$this->widgets('full', 'bottom');
		$this->output('</div> <!-- END qam-footer-row -->');

302
		parent::footer();
303
		$this->output('</div> <!-- END qam-footer-box -->');
Scott committed
304 305 306 307 308 309 310 311 312
	}

	/**
	 * Overridden to customize layout and styling
	 *
	 * @since Snow 1.4
	 */
	public function sidepanel()
	{
313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
		// remove sidebar for user profile pages
		if ($this->template == 'user')
			return;

		$this->output('<div id="qam-sidepanel-toggle"><i class="icon-left-open-big"></i></div>');
		$this->output('<div class="qa-sidepanel" id="qam-sidepanel-mobile">');
		$this->qam_search();
		$this->widgets('side', 'top');
		$this->sidebar();
		$this->widgets('side', 'high');
		$this->widgets('side', 'low');
		if (isset($this->content['sidepanel']))
			$this->output_raw($this->content['sidepanel']);
		$this->feed();
		$this->widgets('side', 'bottom');
328
		$this->output('</div> <!-- qa-sidepanel -->', '');
Scott committed
329 330 331
	}

	/**
332
	 * Allow alternate sidebar color.
Scott committed
333 334 335 336 337
	 *
	 * @since Snow 1.4
	 */
	public function sidebar()
	{
338 339 340
		if (isset($this->content['sidebar'])) {
			$sidebar = $this->content['sidebar'];
			if (!empty($sidebar)) {
341
				$this->output('<div class="qa-sidebar ' . $this->welcome_widget_class . '">');
342
				$this->output_raw($sidebar);
343
				$this->output('</div> <!-- qa-sidebar -->', '');
344
			}
Scott committed
345 346 347 348
		}
	}

	/**
349
	 * Add close icon
Scott committed
350 351 352 353 354 355
	 *
	 * @since Snow 1.4
	 * @param array $q_item
	 */
	public function q_item_title($q_item)
	{
pupi1985 committed
356
		$closedText = qa_lang('main/closed');
357 358
		$imgHtml = empty($q_item['closed'])
			? ''
Scott committed
359
			: '<img src="' . $this->rooturl . $this->icon_url . '/closed-q-list.png" class="qam-q-list-close-icon" alt="' . $closedText . '" title="' . $closedText . '"/>';
360

Scott committed
361
		$this->output(
362 363 364 365 366
			'<div class="qa-q-item-title">',
			// add closed note in title
			$imgHtml,
			'<a href="' . $q_item['url'] . '">' . $q_item['title'] . '</a>',
			'</div>'
Scott committed
367 368 369 370
		);
	}

	/**
371
	 * Add RSS feeds icon
Scott committed
372
	 */
373
	public function favorite()
Scott committed
374
	{
375
		parent::favorite();
Scott committed
376

Scott committed
377
		// RSS feed link in title
378 379 380 381
		if (isset($this->content['feed']['url'])) {
			$feed = $this->content['feed'];
			$label = isset($feed['label']) ? $feed['label'] : '';
			$this->output('<a href="' . $feed['url'] . '" title="' . $label . '"><i class="icon-rss qam-title-rss"></i></a>');
Scott committed
382
		}
383 384 385 386 387 388 389 390 391 392
	}

	/**
	 * Add closed icon for closed questions
	 *
	 * @since Snow 1.4
	 */
	public function title()
	{
		$q_view = isset($this->content['q_view']) ? $this->content['q_view'] : null;
Scott committed
393

Scott committed
394 395 396 397
		// link title where appropriate
		$url = isset($q_view['url']) ? $q_view['url'] : false;

		// add closed image
pupi1985 committed
398
		$closedText = qa_lang('main/closed');
399 400
		$imgHtml = empty($q_view['closed'])
			? ''
Scott committed
401
			: '<img src="' . $this->rooturl . $this->icon_url . '/closed-q-view.png" class="qam-q-view-close-icon" alt="' . $closedText . '" width="24" height="24" title="' . $closedText . '"/>';
402

Scott committed
403 404
		if (isset($this->content['title'])) {
			$this->output(
405 406 407 408
				$imgHtml,
				$url ? '<a href="' . $url . '">' : '',
				$this->content['title'],
				$url ? '</a>' : ''
Scott committed
409 410 411 412 413
			);
		}
	}

	/**
414
	 * Add view counter to question list
Scott committed
415 416 417 418 419
	 *
	 * @since Snow 1.4
	 * @param array $q_item
	 */
	public function q_item_stats($q_item)
420
	{
Scott committed
421 422 423 424
		$this->output('<div class="qa-q-item-stats">');

		$this->voting($q_item);
		$this->a_count($q_item);
425
		parent::view_count($q_item);
Scott committed
426 427 428 429 430 431 432 433

		$this->output('</div>');
	}

	/**
	 * Prevent display view counter on usual place
	 *
	 * @since Snow 1.4
434
	 * @param array $q_item
Scott committed
435
	 */
436 437 438 439
	public function view_count($q_item)
	{
		// do nothing
	}
Scott committed
440 441

	/**
442
	 * Add view counter to question view
Scott committed
443 444
	 *
	 * @since Snow 1.4
445
	 * @param array $q_view
Scott committed
446 447 448 449 450 451 452
	 */
	public function q_view_stats($q_view)
	{
		$this->output('<div class="qa-q-view-stats">');

		$this->voting($q_view);
		$this->a_count($q_view);
453
		parent::view_count($q_view);
Scott committed
454 455 456 457 458

		$this->output('</div>');
	}

	/**
459
	 * Modify user whometa, move to top
Scott committed
460 461
	 *
	 * @since Snow 1.4
462
	 * @param array $q_view
Scott committed
463 464 465 466 467
	 */
	public function q_view_main($q_view)
	{
		$this->output('<div class="qa-q-view-main">');

468
		if (isset($q_view['main_form_tags'])) {
Scott committed
469
			$this->output('<form ' . $q_view['main_form_tags'] . '>'); // form for buttons on question
470
		}
Scott committed
471 472 473 474 475 476 477 478 479 480 481

		$this->post_avatar_meta($q_view, 'qa-q-view');
		$this->q_view_content($q_view);
		$this->q_view_extra($q_view);
		$this->q_view_follows($q_view);
		$this->q_view_closed($q_view);
		$this->post_tags($q_view, 'qa-q-view');

		$this->q_view_buttons($q_view);

		if (isset($q_view['main_form_tags'])) {
482 483
			if (isset($q_view['buttons_form_hidden']))
				$this->form_hidden_elements($q_view['buttons_form_hidden']);
Scott committed
484 485 486
			$this->output('</form>');
		}

487
		$this->c_list(isset($q_view['c_list']) ? $q_view['c_list'] : null, 'qa-q-view');
488
		$this->c_form(isset($q_view['c_form']) ? $q_view['c_form'] : null);
Scott committed
489 490 491 492

		$this->output('</div> <!-- END qa-q-view-main -->');
	}

493 494 495 496 497 498
	/**
	 * Hide votes when zero
	 * @param  array $post
	 */
	public function vote_count($post)
	{
499
		if ($post['raw']['basetype'] === 'C' && $post['raw']['netvotes'] == 0) {
500 501 502 503 504 505
			$post['netvotes_view']['data'] = '';
		}

		parent::vote_count($post);
	}

Scott committed
506
	/**
507
	 * Move user whometa to top in answer
Scott committed
508 509
	 *
	 * @since Snow 1.4
510
	 * @param array $a_item
Scott committed
511 512 513 514 515
	 */
	public function a_item_main($a_item)
	{
		$this->output('<div class="qa-a-item-main">');

516
		if (isset($a_item['main_form_tags'])) {
Scott committed
517
			$this->output('<form ' . $a_item['main_form_tags'] . '>'); // form for buttons on answer
518 519 520
		}

		$this->post_avatar_meta($a_item, 'qa-a-item');
Scott committed
521 522

		if ($a_item['hidden'])
523
			$this->output('<div class="qa-a-item-hidden">');
Scott committed
524
		elseif ($a_item['selected'])
525
			$this->output('<div class="qa-a-item-selected">');
Scott committed
526 527

		$this->a_selection($a_item);
528 529
		if (isset($a_item['error']))
			$this->error($a_item['error']);
Scott committed
530 531
		$this->a_item_content($a_item);

532
		if ($a_item['hidden'] || $a_item['selected'])
Scott committed
533 534 535 536 537
			$this->output('</div>');

		$this->a_item_buttons($a_item);

		if (isset($a_item['main_form_tags'])) {
538 539
			if (isset($a_item['buttons_form_hidden']))
				$this->form_hidden_elements($a_item['buttons_form_hidden']);
Scott committed
540 541 542
			$this->output('</form>');
		}

543
		$this->c_list(isset($a_item['c_list']) ? $a_item['c_list'] : null, 'qa-a-item');
544
		$this->c_form(isset($a_item['c_form']) ? $a_item['c_form'] : null);
Scott committed
545 546 547 548

		$this->output('</div> <!-- END qa-a-item-main -->');
	}

549
	/**
550
	 * Remove comment voting here
551 552 553 554 555 556 557 558 559 560 561 562 563 564
	 * @param array $c_item
	 */
	public function c_list_item($c_item)
	{
		$extraclass = @$c_item['classes'] . (@$c_item['hidden'] ? ' qa-c-item-hidden' : '');

		$this->output('<div class="qa-c-list-item ' . $extraclass . '" ' . @$c_item['tags'] . '>');

		$this->c_item_main($c_item);
		$this->c_item_clear();

		$this->output('</div> <!-- END qa-c-item -->');
	}

Scott committed
565
	/**
566
	 * Move user whometa to top in comment, add comment voting back in
Scott committed
567 568
	 *
	 * @since Snow 1.4
569
	 * @param array $c_item
Scott committed
570 571 572 573 574
	 */
	public function c_item_main($c_item)
	{
		$this->post_avatar_meta($c_item, 'qa-c-item');

575 576
		if (isset($c_item['error']))
			$this->error($c_item['error']);
Scott committed
577

578 579 580 581
		if (isset($c_item['main_form_tags'])) {
			$this->output('<form ' . $c_item['main_form_tags'] . '>'); // form for comment voting buttons
		}

582 583
		$this->voting($c_item);

584 585 586 587 588 589 590 591 592
		if (isset($c_item['main_form_tags'])) {
			$this->form_hidden_elements(@$c_item['voting_form_hidden']);
			$this->output('</form>');
		}

		if (isset($c_item['main_form_tags'])) {
			$this->output('<form ' . $c_item['main_form_tags'] . '>'); // form for buttons on comment
		}

Scott committed
593 594 595 596 597 598 599 600 601 602
		if (isset($c_item['expand_tags']))
			$this->c_item_expand($c_item);
		elseif (isset($c_item['url']))
			$this->c_item_link($c_item);
		else
			$this->c_item_content($c_item);

		$this->output('<div class="qa-c-item-footer">');
		$this->c_item_buttons($c_item);
		$this->output('</div>');
603 604 605 606 607

		if (isset($c_item['main_form_tags'])) {
			$this->form_hidden_elements(@$c_item['buttons_form_hidden']);
			$this->output('</form>');
		}
Scott committed
608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623
	}

	/**
	 * Q2A Market attribution.
	 * I'd really appreciate you displaying this link on your Q2A site. Thank you - Jatin
	 *
	 * @since Snow 1.4
	 */
	public function attribution()
	{
		// floated right
		$this->output(
			'<div class="qa-attribution">',
			'Snow Theme by <a href="http://www.q2amarket.com">Q2A Market</a>',
			'</div>'
		);
624
		parent::attribution();
Scott committed
625 626
	}

Scott committed
627 628 629 630 631 632 633 634 635 636
	/**
	 * User account navigation item. This will return based on login information.
	 * If user is logged in, it will populate user avatar and account links.
	 * If user is guest, it will populate login form and registration link.
	 *
	 * @since Snow 1.4
	 */
	private function qam_user_account()
	{
		if (qa_is_logged_in()) {
637
			// get logged-in user avatar
Scott committed
638 639 640
			$handle = qa_get_logged_in_user_field('handle');
			$toggleClass = 'qam-logged-in';

641
			if (QA_FINAL_EXTERNAL_USERS)
642
				$tobar_avatar = qa_get_external_avatar_html(qa_get_logged_in_user_field('userid'), $this->nav_bar_avatar_size, true);
Scott committed
643 644 645 646 647 648 649 650
			else {
				$tobar_avatar = qa_get_user_avatar_html(
					qa_get_logged_in_user_field('flags'),
					qa_get_logged_in_user_field('email'),
					$handle,
					qa_get_logged_in_user_field('avatarblobid'),
					qa_get_logged_in_user_field('avatarwidth'),
					qa_get_logged_in_user_field('avatarheight'),
651
					$this->nav_bar_avatar_size,
Scott committed
652 653 654 655
					false
				);
			}

656 657 658
			$avatar = strip_tags($tobar_avatar, '<img>');
			if (!empty($avatar))
				$handle = '';
659
		}
660 661
		else {
			// display login icon and label
Scott committed
662 663
			$handle = $this->content['navigation']['user']['login']['label'];
			$toggleClass = 'qam-logged-out';
664
			$avatar = '<i class="icon-key qam-auth-key"></i>';
Scott committed
665 666 667
		}

		// finally output avatar with div tag
668
		$handleBlock = empty($handle) ? '' : '<div class="qam-account-handle">' . qa_html($handle) . '</div>';
Scott committed
669 670
		$this->output(
			'<div id="qam-account-toggle" class="' . $toggleClass . '">',
671 672
			$avatar,
			$handleBlock,
Scott committed
673 674 675 676
			'</div>'
		);
	}

Scott committed
677
	/**
678
	 * Add search-box wrapper with extra class for color scheme
Scott committed
679 680 681
	 *
	 * @since Snow 1.4
	 * @version 1.0
Scott committed
682 683
	 * @param string $addon_class
	 * @param string $ids
Scott committed
684
	 */
pupi1985 committed
685
	private function qam_search($addon_class = null, $ids = null)
Scott committed
686
	{
pupi1985 committed
687
		$id = isset($ids) ? ' id="' . $ids . '"' : '';
Scott committed
688

pupi1985 committed
689
		$this->output('<div class="qam-search ' . $this->ask_search_box_class . ' ' . $addon_class . '"' . $id . '>');
690
		$this->search();
Scott committed
691 692 693 694 695 696 697 698 699 700 701 702 703
		$this->output('</div>');
	}


	/**
	 * Dynamic <code>CSS</code> based on options and other interaction with Q2A.
	 *
	 * @since Snow 1.4
	 * @version 1.0
	 * @return string The CSS code
	 */
	private function head_inline_css()
	{
Scott committed
704 705
		$css = array('<style>');

706
		if (!qa_is_logged_in())
Scott committed
707
			$css[] = '.qa-nav-user { margin: 0 !important; }';
Scott committed
708 709

		if (qa_request_part(1) !== qa_get_logged_in_handle()) {
Scott committed
710 711 712 713 714 715 716
			$css[] = '@media (max-width: 979px) {';
			$css[] = ' body.qa-template-user.fixed, body[class*="qa-template-user-"].fixed { padding-top: 118px !important; }';
			$css[] = ' body.qa-template-users.fixed { padding-top: 95px !important; }';
			$css[] = '}';
			$css[] = '@media (min-width: 980px) {';
			$css[] = ' body.qa-template-users.fixed { padding-top: 105px !important;}';
			$css[] = '}';
Scott committed
717
		}
718

Scott committed
719 720 721
		$css[] = '</style>';

		$this->output_array($css);
Scott committed
722 723
	}

724 725 726 727 728 729 730 731 732 733
	/**
	 * Custom ask button for medium and small screen
	 *
	 * @access private
	 * @since Snow 1.4
	 * @version 1.0
	 * @return string Ask button html markup
	 */
	private function ask_button()
	{
734 735 736 737 738 739 740 741 742
		return
			'<div class="qam-ask-search-box">' .
			'<div class="qam-ask-mobile">' .
			'<a href="' . qa_path('ask', null, qa_path_to_root()) . '" class="' . $this->ask_search_box_class . '">' .
			qa_lang_html('main/nav_ask') .
			'</a>' .
			'</div>' .
			'<div class="qam-search-mobile ' . $this->ask_search_box_class . '" id="qam-search-mobile">' .
			'</div>' .
743
			'</div>';
744
	}
745 746 747 748 749 750 751 752 753 754
	
	/**
	 * Adds placeholder "Search..." for search box
	 *
	 * @since Snow 1.4
	 */
	public function search_field($search)
	{
		$this->output('<input type="text" ' .'placeholder="' . $search['button_label'] . '..." ' . $search['field_tags'] . ' value="' . @$search['value'] . '" class="qa-search-field"/>');
	}
Scott committed
755
}