mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 11:29:24 -04:00
1) Simplify the admin settings page to what most of our users want. Eliminate basic_ and default_ ids. We just have company_id and default_id. Advanced users can use advanced settings for now. 2) Fix security in print_photos (didn't get it right in my last commit) 3) Use the regular thumb and full urls if the images are publicly available to reduce load on the proxy. 4) Simplify proxy expiration code. 5) Eliminate all specialized styles from the admin theme.
23 lines
918 B
PHP
23 lines
918 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<div id="gAdminDigibug">
|
|
<div class="gAdminDigibugIntro">
|
|
<img id="DigibugLogo" src="<?= url::file("modules/digibug/images/digibug_logo.png") ?>">
|
|
<h2> <?= t("Digibug Photo Printing") ?> </h2>
|
|
<p>
|
|
<?= t("Turn your photos into a wide variety of prints, gifts and games!") ?>
|
|
</p>
|
|
|
|
<ul id="gMessage">
|
|
<li class="gSuccess">
|
|
<?= t("You're ready to print photos!") ?>
|
|
</li>
|
|
</ul>
|
|
|
|
<p>
|
|
<?= t("You don't need an account with Digibug, but if you <a href=\"%signup_url\">register with Digibug</a> and enter your Digibug id in the <a href=\"%advanced_settings_url\">Advanced Settings</a> page you can make money off of your photos!",
|
|
array("signup_url" => "http://www.digibug.com/signup.php",
|
|
"advanced_settings_url" => url::site("admin/advanced_settings"))) ?>
|
|
</p>
|
|
</div>
|
|
</div>
|