Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
63619dae
Commit
63619dae
authored
15 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Core templates are in core/templates directory. Make templates simpler.
parent
a0521a26
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
htdocs/core/templates/google_ad.tpl
+0
-34
0 additions, 34 deletions
htdocs/core/templates/google_ad.tpl
htdocs/core/templates/login.tpl
+11
-1
11 additions, 1 deletion
htdocs/core/templates/login.tpl
htdocs/core/templates/login.tpl.php
+4
-4
4 additions, 4 deletions
htdocs/core/templates/login.tpl.php
with
15 additions
and
39 deletions
htdocs/core/templates/google_ad.tpl
deleted
100644 → 0
+
0
−
34
View file @
a0521a26
{* Copyright (C) 2009 Regis Houssin <regis@dolibarr.fr>
*
* 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 2 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Id$
*}
<!-- BEGIN GOOGLE AD TEMPLATE -->
<script
type=
"text/javascript"
>
<!--
google_ad_client
=
"
{
$main_google_ad_client
}
"
;
/*
{
$main_google_ad_width
}
x
{
$main_google_ad_height
}
,
{
$main_google_ad_name
}
*/
google_ad_slot
=
"
{
$main_google_ad_slot
}
"
;
google_ad_width
=
{
$main_google_ad_width
}
;
google_ad_height
=
{
$main_google_ad_height
}
;
//-->
</script>
<script
type=
"text/javascript"
src=
"http://pagead2.googlesyndication.com/pagead/show_ads.js"
>
</script>
<!-- END GOOGLE AD TEMPLATE -->
\ No newline at end of file
This diff is collapsed.
Click to expand it.
htdocs/core/templates/login.tpl
+
11
−
1
View file @
63619dae
...
...
@@ -162,7 +162,17 @@ function donnefocus() {ldelim}
{
if
$main_google_ad_client
}
<div
align=
"center"
>
{
include
file
=
$google_ad_tpl
}
<script
type=
"text/javascript"
>
<!--
google_ad_client
=
"
{
$main_google_ad_client
}
"
;
/*
{
$main_google_ad_width
}
x
{
$main_google_ad_height
}
,
{
$main_google_ad_name
}
*/
google_ad_slot
=
"
{
$main_google_ad_slot
}
"
;
google_ad_width
=
{
$main_google_ad_width
}
;
google_ad_height
=
{
$main_google_ad_height
}
;
//-->
</script>
<script
type=
"text/javascript"
src=
"http://pagead2.googlesyndication.com/pagead/show_ads.js"
>
</script>
</div>
{/
if
}
...
...
This diff is collapsed.
Click to expand it.
htdocs/core/templates/login.tpl.php
+
4
−
4
View file @
63619dae
...
...
@@ -165,11 +165,11 @@ function donnefocus() {
<?php
if
(
$main_google_ad_client
)
{
?>
<div
align=
"center"
>
<script
type=
"text/javascript"
>
<!--
google_ad_client
=
"
{
$main_google_ad_client
}
"
;
google_ad_client
=
<?php
echo
$main_google_ad_client
?>
;
/* {$main_google_ad_width}x{$main_google_ad_height}, {$main_google_ad_name} */
google_ad_slot
=
"
{
$main_google_ad_slot
}
"
;
google_ad_width
=
{
$main_google_ad_width
}
;
google_ad_height
=
{
$main_google_ad_height
}
;
google_ad_slot
=
<?php
echo
$main_google_ad_slot
?>
;
google_ad_width
=
<?php
echo
$main_google_ad_width
?>
;
google_ad_height
=
<?php
echo
$main_google_ad_height
?>
;
//-->
</script>
<script
type=
"text/javascript"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment