Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Q
question2answer
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
outils
question2answer
Commits
3f1dcec9
Commit
3f1dcec9
authored
Feb 02, 2015
by
pupi1985
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Turned qa_html_theme_base references into parent ones
parent
e62c7057
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
qa-theme.php
qa-theme/SnowFlat/qa-theme.php
+10
-10
No files found.
qa-theme/SnowFlat/qa-theme.php
View file @
3f1dcec9
...
...
@@ -62,7 +62,7 @@ class qa_html_theme extends qa_html_theme_base
public
function
head_metas
()
{
$this
->
output
(
'<meta name="viewport" content="width=device-width, initial-scale=1"/>'
);
qa_html_theme_base
::
head_metas
();
parent
::
head_metas
();
}
/**
...
...
@@ -79,7 +79,7 @@ class qa_html_theme extends qa_html_theme_base
// add Ubuntu font CSS file
$this
->
content
[
'css_src'
][]
=
'http://fonts.googleapis.com/css?family=Ubuntu:400,700,400italic,700italic'
;
qa_html_theme_base
::
head_css
();
parent
::
head_css
();
// output some dynamic CSS inline
$this
->
head_inline_css
();
...
...
@@ -95,7 +95,7 @@ class qa_html_theme extends qa_html_theme_base
$jsUrl
=
$this
->
rooturl
.
$this
->
js_dir
.
'snow-core.js?'
.
QA_VERSION
;
$this
->
content
[
'script'
][]
=
'<script src="'
.
$jsUrl
.
'"></script>'
;
qa_html_theme_base
::
head_script
();
parent
::
head_script
();
}
/**
...
...
@@ -107,7 +107,7 @@ class qa_html_theme extends qa_html_theme_base
public
function
logged_in
()
{
global
$qam_snow
;
qa_html_theme_base
::
logged_in
();
parent
::
logged_in
();
$this
->
output
(
$qam_snow
->
headers
[
'user_points'
]);
}
...
...
@@ -123,10 +123,10 @@ class qa_html_theme extends qa_html_theme_base
$this
->
output
(
'<div id="qam-sidepanel-toggle"><i class="icon-left-open-big"></i></div>'
);
$this
->
output
(
'<div id="qam-sidepanel-mobile">'
);
qa_html_theme_base
::
sidepanel
();
parent
::
sidepanel
();
$this
->
output
(
'</div>'
);
}
qa_html_theme_base
::
body
();
parent
::
body
();
}
/**
...
...
@@ -305,7 +305,7 @@ class qa_html_theme extends qa_html_theme_base
$this
->
widgets
(
'full'
,
'bottom'
);
$this
->
output
(
'</div> <!-- END qam-footer-row -->'
);
qa_html_theme_base
::
footer
();
parent
::
footer
();
$this
->
output
(
'</div> <!-- END qam-footer-box -->'
,
''
);
}
...
...
@@ -410,7 +410,7 @@ class qa_html_theme extends qa_html_theme_base
$this
->
voting
(
$q_item
);
$this
->
a_count
(
$q_item
);
qa_html_theme_base
::
view_count
(
$q_item
);
parent
::
view_count
(
$q_item
);
$this
->
output
(
'</div>'
);
}
...
...
@@ -437,7 +437,7 @@ class qa_html_theme extends qa_html_theme_base
$this
->
voting
(
$q_view
);
$this
->
a_count
(
$q_view
);
qa_html_theme_base
::
view_count
(
$q_view
);
parent
::
view_count
(
$q_view
);
$this
->
output
(
'</div>'
);
}
...
...
@@ -561,7 +561,7 @@ class qa_html_theme extends qa_html_theme_base
'</div>'
);
qa_html_theme_base
::
attribution
();
parent
::
attribution
();
}
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment