First public release of MyAAC
29
.htaccess
Normal file
@ -0,0 +1,29 @@
|
||||
Options -Indexes -MultiViews
|
||||
|
||||
RewriteEngine On
|
||||
#RewriteBase /
|
||||
|
||||
# Page parser
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteRule ^([A-Za-z0-9-_']+)\.png/?$ tools/signature/index.php?name=$1 [L]
|
||||
RewriteRule ^images/items/([0-9]+)\.gif$ tools/item.php?id=$1
|
||||
RewriteRule ^characters/([A-Za-z0-9-_+']+)$ index.php?subtopic=characters&name=$1
|
||||
RewriteRule ^guilds/([A-Za-z0-9-_+']+)$ index.php?subtopic=guilds&action=show&guild=$1
|
||||
RewriteRule ^forum/board/([0-9]+)$ index.php?subtopic=forum&action=show_board&id=$1
|
||||
RewriteRule ^account/manage$ index.php?subtopic=accountmanagement
|
||||
RewriteRule ^account/create$ index.php?subtopic=createaccount
|
||||
RewriteRule ^account/lost$ index.php?subtopic=lostaccount
|
||||
RewriteRule ^account/logout$ index.php?subtopic=accountmanagement&action=logout
|
||||
RewriteRule ^news/archive/([0-9]+)$ index.php?subtopic=news&archive=true&id=$1
|
||||
RewriteRule ^news/archive$ index.php?subtopic=news&archive=true
|
||||
RewriteRule ^highscores/([A-Za-z0-9-_]+)/([A-Za-z0-9-_]+)?$ index.php?subtopic=highscores&list=$1&vocation=$2
|
||||
RewriteRule ^highscores/([A-Za-z0-9-_']+)$ index.php?subtopic=highscores&list=$1
|
||||
RewriteRule ^admin/$ admin/index.php
|
||||
RewriteRule ^install/$ install/index.php
|
||||
|
||||
# temp solution >.>
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteRule ^([A-Za-z0-9-_]+)/?$ index.php?p=$1 [L]
|
||||
RewriteRule ^([A-Za-z0-9-_]+)/([A-Za-z0-9-_]+)?$ index.php?p=$1&action=$2 [L]
|
674
LICENSE
Normal file
@ -0,0 +1,674 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
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.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<http://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
41
README
Normal file
@ -0,0 +1,41 @@
|
||||
MyAAC 0.0.1 - http://www.myaac.net/
|
||||
|
||||
REQUIREMENTS
|
||||
=====================================
|
||||
- PHP 5.1.0 or later
|
||||
- MySQL database
|
||||
- (optional) mod_rewrite to use friendly_urls
|
||||
|
||||
INSTALLATION AND CONFIGURATION
|
||||
=====================================
|
||||
Just decompress and untar the source (which you should have done by now,
|
||||
if you're reading this), into your webserver's document root.
|
||||
|
||||
MyAAC needs proper permissions to handle files correctly.
|
||||
If you're using apache2, then your directory needs to have owner set to: www-data, you can do it by using following command:
|
||||
chown -R www-data.www-data /var/www/*
|
||||
(or any other path your MyAAC installation is located at..)
|
||||
|
||||
--------------------------
|
||||
Note: Linux only
|
||||
If you're under linux use these commands to set proper permissions:
|
||||
chmod 660 config.local.php
|
||||
chmod 660 images/guilds
|
||||
chmod 660 images/houses
|
||||
chmod 660 images/screenshots
|
||||
--------------------------
|
||||
|
||||
Visit http://your_domain/install (http://localhost/install) and follow instructions in the browser.
|
||||
|
||||
KNOWN PROBLEMS
|
||||
=====================================
|
||||
- none -
|
||||
|
||||
OTHER NOTES
|
||||
=====================================
|
||||
If you have a great idea or want contribute to the project - visit our website at http://www.my-aac.org
|
||||
|
||||
LICENSING
|
||||
=====================================
|
||||
This program and all associated files are released under the GNU Public
|
||||
License, see LICENSE for details.
|
4
admin/.htaccess
Normal file
@ -0,0 +1,4 @@
|
||||
# uncomment if you want to restrict access only for your ip
|
||||
#order deny,allow
|
||||
#deny from all
|
||||
#allow from 127.0.0.1
|
1
admin/includes/functions.php
Normal file
@ -0,0 +1 @@
|
||||
<?php
// nothing yet here
?>
|
1
admin/index.php
Normal file
@ -0,0 +1 @@
|
||||
<?php
// few things we'll need
require('../common.php');
require_once(BASE . 'config.local.php');
if(file_exists(BASE . 'install') && (!isset($config['installed']) || !$config['installed']))
{
header('Location: ' . BASE_DIR . '/install/');
die('Setup detected that <b>install/</b> directory exists. Please visit <a href="' . $basedir . '/install">this</a> url to start MyAAC Installation.<br/>Delete <b>install/</b> directory if you already installed MyAAC.<br/>Remember to REFRESH this page when you\'re done!');
}
$content = '';
// validate page
$page = isset($_GET['p']) ? $_GET['p'] : '';
if(empty($page) || preg_match("/[^a-zA-Z0-9_\-]/", $page))
$page = 'dashboard';
$page = strtolower($page);
define('PAGE', $page);
require(SYSTEM . 'functions.php');
require(SYSTEM . 'init.php');
require(SYSTEM . 'status.php');
require(SYSTEM . 'login.php');
require(ADMIN . 'includes/functions.php');
// if we're not logged in - show login box
if(!$logged || !admin()) {
$page = 'login';
}
// include our page
$file = SYSTEM . 'pages/admin/' . $page . '.php';
if(!@file_exists($file)) {
$page = '404';
$file = SYSTEM . 'pages/404.php';
}
ob_start();
include($file);
$content .= ob_get_contents();
ob_end_clean();
// template
$template_path = 'templates/clean/';
require(ADMIN . $template_path . 'template.php');
?>
|
136
admin/templates/clean/style.css
Normal file
@ -0,0 +1,136 @@
|
||||
*{
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
body {
|
||||
font-family: Helvetica;
|
||||
color: #313334;
|
||||
background: /*#f9f9f9 #EEEEEE*/#F7F6F1;
|
||||
}
|
||||
|
||||
img {border: none;}
|
||||
|
||||
a:link {color: #000; text-decoration: none;}
|
||||
a:visited {color: #000; text-decoration: none;}
|
||||
a:focus {color: #000; text-decoration: none;}
|
||||
a:active {color: #000; text-decoration: underline;}
|
||||
a:hover {color: #000; text-decoration: underline;}
|
||||
a.current {font-weight: bold;}
|
||||
|
||||
h5.blue {color: #6b7b95;}
|
||||
h5.red {color: #c17878;}
|
||||
h5.green {color: #78ba91;}
|
||||
h5.purple {color: #a87aad;}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {color: #313334; font-weight: bold;}
|
||||
.separator {color:#BCE}
|
||||
.margin-left{
|
||||
margin-left:5px;
|
||||
}
|
||||
|
||||
.button { background:#eee url(images/button.gif) repeat-x 0 0; border:solid 1px #b1a874; color:#7f7f7f; font-size:11px; padding:2px 6px 2px 6px; cursor:pointer; line-height:14px !important; }
|
||||
.button:hover { color:#333; border-color:#857b42; }
|
||||
|
||||
.field, .button { -moz-border-radius:4px; -webkit-border-radius:4px; }
|
||||
.small-field, .button, .pagging a { -moz-border-radius:3px; -webkit-border-radius:3px; }
|
||||
|
||||
.table th {
|
||||
background-color: #4CAF50;
|
||||
color: white;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.table tr:nth-child(odd) {background-color: #d1d1d1}
|
||||
|
||||
a.ico { color:#9d9c9a; font-size:10px; text-decoration: none; padding:0 0 0 14px; background-repeat:no-repeat; background-position:0 0; }
|
||||
a.ico:hover { color:#333;}
|
||||
|
||||
#container{
|
||||
width:960px;
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
}
|
||||
#header {
|
||||
/*width: 960px;*/
|
||||
padding-left: auto;
|
||||
padding-right: auto;
|
||||
border-bottom: 1px dotted black;
|
||||
margin-top: 40px;
|
||||
}
|
||||
#header h1 {
|
||||
margin: 0;
|
||||
padding-top: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
#sidebar{
|
||||
background: #FFF;
|
||||
width: 170px;
|
||||
float: left;
|
||||
margin: 10px 0 10px 0;
|
||||
padding: 10px;
|
||||
border: 1px solid #CCC;
|
||||
}
|
||||
#content {
|
||||
width: 740px;
|
||||
float: right;
|
||||
margin: 20px 0 10px 0;
|
||||
padding: 10px;
|
||||
}
|
||||
#footer {
|
||||
margin-top: 20px;
|
||||
border-top: 1px dotted black;
|
||||
text-align: center;
|
||||
clear: both;
|
||||
}
|
||||
/*********************
|
||||
Sidebar
|
||||
*********************/
|
||||
#sidebar ul{
|
||||
list-style:none;
|
||||
line-height:22px;
|
||||
}
|
||||
#sidebar ul li a,#sidebar ul li a:visited{
|
||||
padding-left:19px;
|
||||
text-decoration:none;
|
||||
margin:0 3px;
|
||||
display:block;
|
||||
}
|
||||
#sidebar ul li a:hover{
|
||||
text-decoration:underline;
|
||||
}
|
||||
#sidebar ul li ul{
|
||||
margin-left:10px;
|
||||
}
|
||||
#sidebar h3{
|
||||
padding:2px;
|
||||
font-size:14px;
|
||||
}
|
||||
/*********************
|
||||
Status & version boxes
|
||||
*********************/
|
||||
#status {
|
||||
position: absolute; top: 10px; left: 10px;
|
||||
margin: 0px;
|
||||
float: right;
|
||||
font-size: 12px;
|
||||
}
|
||||
#status .success {
|
||||
margin: 0px:
|
||||
}
|
||||
#version {
|
||||
position: absolute; top: 10px; right: 10px;
|
||||
float: right;
|
||||
text-align: right;
|
||||
font-size: 12px;
|
||||
}
|
||||
/*********************
|
||||
Infobox
|
||||
*********************/
|
||||
#infobox{
|
||||
border:1px solid #e9e8e3;
|
||||
}
|
||||
#infobox h3{
|
||||
background:#f7f6f1;
|
||||
border-bottom:1px solid #e9e8e3;
|
||||
color:#654322;
|
||||
}
|
95
admin/templates/clean/template.php
Normal file
@ -0,0 +1,95 @@
|
||||
<?php defined('MYAAC') or die('Direct access not allowed!'); ?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<?php echo template_header(true); ?>
|
||||
<title><?php echo $title . $config['title_separator'] . $config['lua']['serverName']; ?> - Powered by MyAAC</title>
|
||||
<link rel="stylesheet" type="text/css" href="<?php echo $template_path; ?>style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<?php if($page != 'tools'): ?>
|
||||
<div id="container">
|
||||
<div id="header">
|
||||
<?php if($logged && admin()): ?>
|
||||
<div id="status">
|
||||
<?php if($status['online']): ?>
|
||||
<p class="success" style="width: 120px; text-align: center;">Status: Online<br/>
|
||||
<?php echo $status['uptimeReadable'] . ', ' . $status['players'] . '/' . $status['playersMax']; ?><br/>
|
||||
<?php echo $config['lua']['ip'] . ' : ' . $config['lua']['loginPort']; ?>
|
||||
</p>
|
||||
<?php else: ?>
|
||||
<p class="error" style="width: 120px; text-align: center;">Status: Offline</p>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<div id="version">Version: <?php echo MYAAC_VERSION; ?> (<a id="update" href="?p=version">Check for updates</a>)<br/>
|
||||
Logged in as: <b><?php echo $account_logged->getName(); ?></b><br/>
|
||||
<a href="<?php echo BASE_URL; ?>" target="_blank">Preview</a> <span class="separator">|</span> <a href="?action=logout">Log out<img src="<?php echo BASE_URL; ?>images/icons/logout.png" alt="" title="Log out" /></a>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<h1><?php echo $config['lua']['serverName'] . ' - ' . $title; ?> - Admin Panel</h1>
|
||||
</div>
|
||||
<div id="wrapper">
|
||||
<?php
|
||||
if($logged && admin()) {
|
||||
?>
|
||||
<div id="sidebar">
|
||||
<ul>
|
||||
<?php
|
||||
$menus = array(
|
||||
'Dashboard' => 'dashboard',
|
||||
'Mailer' => 'mailer',
|
||||
'Pages' => 'pages',
|
||||
'Plugins' => 'plugins',
|
||||
'Statistics' => 'statistics',
|
||||
'Visitors' => 'visitors',
|
||||
'Players' => 'players',
|
||||
'Tools' => array(
|
||||
'phpinfo' => 'phpinfo'
|
||||
),
|
||||
'Notepad' => 'notepad',
|
||||
'Logs' => 'logs'
|
||||
);
|
||||
|
||||
$i = 0;
|
||||
foreach($menus as $_name => $_page) {
|
||||
//echo '<a ' . ($page == $_page ? ' class="current"' : '') . 'href="?p=' . $_page . '">' . $_name . '</a>';
|
||||
echo '<li><h3>';
|
||||
$has_child = is_array($_page);
|
||||
if(!$has_child) {
|
||||
echo '<a href="?p=' . $_page . '">';
|
||||
if($page == $_page) echo '<u>';
|
||||
echo $_name;
|
||||
if($page == $_page) echo '</u>';
|
||||
echo '</a>';
|
||||
}
|
||||
else
|
||||
echo $_name;
|
||||
|
||||
echo '</h3>';
|
||||
if($has_child) {
|
||||
echo '<ul>';
|
||||
foreach($_page as $__name => $__page)
|
||||
echo '<li><a href="?p=' . $__page . '">';
|
||||
if($page == $__page) echo '<u>';
|
||||
echo $__name;
|
||||
if($page == $__page) echo '</u>';
|
||||
echo '</a></li>';
|
||||
echo '</ul>';
|
||||
}
|
||||
echo '</li>';
|
||||
}
|
||||
?>
|
||||
</ul>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
<div id="content"><?php echo $content; ?></div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
Powered by <a href="http://my-aac.org" target="_blank">MyAAC</a>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</body>
|
||||
</html>
|
281
admin/templates/stylish/Kopia index.html
Normal file
@ -0,0 +1,281 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>Dashboard - Admin Template</title>
|
||||
<link rel="stylesheet" type="text/css" href="css/theme2.css" />
|
||||
<link rel="stylesheet" type="text/css" href="css/style.css" />
|
||||
<script>
|
||||
var StyleFile = "theme" + document.cookie.charAt(6) + ".css";
|
||||
document.writeln('<link rel="stylesheet" type="text/css" href="css/' + StyleFile + '">');
|
||||
</script>
|
||||
<!--[if IE]>
|
||||
<link rel="stylesheet" type="text/css" href="css/ie-sucks.css" />
|
||||
<![endif]-->
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="container">
|
||||
<div id="header">
|
||||
<h2>My eCommerce Admin area</h2>
|
||||
<div id="topmenu">
|
||||
<ul>
|
||||
<li class="current"><a href="index.html">Dashboard</a></li>
|
||||
<li><a href="#">Orders</a></li>
|
||||
<li><a href="users.html">Users</a></li>
|
||||
<li><a href="#">Manage</a></li>
|
||||
<li><a href="#">CMS</a></li>
|
||||
<li><a href="#">Statistics</a></li>
|
||||
<li><a href="#">Settings</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div id="top-panel">
|
||||
<div id="panel">
|
||||
<ul>
|
||||
<li><a href="#" class="report">Sales Report</a></li>
|
||||
<li><a href="#" class="report_seo">SEO Report</a></li>
|
||||
<li><a href="#" class="search">Search</a></li>
|
||||
<li><a href="#" class="feed">RSS Feed</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div id="wrapper">
|
||||
<div id="content">
|
||||
<div id="rightnow">
|
||||
<h3 class="reallynow">
|
||||
<span>Right Now</span>
|
||||
<a href="#" class="add">Add New Product</a>
|
||||
<a href="#" class="app_add">Some Action</a>
|
||||
<br />
|
||||
</h3>
|
||||
<p class="youhave">You have <a href="#">19 new orders</a>, <a href="#">12 new users</a> and <a href="#">5 new reviews</a>, today you made <a href="#">$1523.63 in sales</a> and a total of <strong>$328.24 profit </strong>
|
||||
</p>
|
||||
</div>
|
||||
<div id="infowrap">
|
||||
<div id="infobox">
|
||||
<h3>Sales for July</h3>
|
||||
<p><img src="img/graph.jpg" width="360" height="266" /></p>
|
||||
</div>
|
||||
<div id="infobox" class="margin-left">
|
||||
<h3>Traffic for July</h3>
|
||||
<p><img src="img/graph2.jpg" alt="a" width="359" height="266" /></p>
|
||||
</div>
|
||||
<div id="infobox">
|
||||
<h3>Last 5 Orders</h3>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Customer</th>
|
||||
<th>Items</th>
|
||||
<th>Grand Total</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><a href="#">Jennifer Kyrnin</a></td>
|
||||
<td>1</td>
|
||||
<td>14.95 €</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Mark Kyrnin</a></td>
|
||||
<td>2</td>
|
||||
<td>34.27 €</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Virgílio Cezar</a></td>
|
||||
<td>2</td>
|
||||
<td>61.39 €</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Todd Simonides</a></td>
|
||||
<td>5</td>
|
||||
<td>1472.56 €</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Carol Elihu</a></td>
|
||||
<td>1</td>
|
||||
<td>9.95 €</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div id="infobox" class="margin-left">
|
||||
<h3>Bestsellers</h3>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Product Name</th>
|
||||
<th>Price</th>
|
||||
<th>Orders</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><a href="#">Apple iPhone 3G 8GB</a></td>
|
||||
<td>199.00 €</td>
|
||||
<td>24</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Fuji FinePix S5800</a></td>
|
||||
<td>365.24 €</td>
|
||||
<td>19</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Canon PIXMA MP140</a></td>
|
||||
<td>59.50 €</td>
|
||||
<td>12</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Apple iPhone 3G 16GB</a></td>
|
||||
<td>199.00 €</td>
|
||||
<td>10</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Prenosnik HP 530 1,6GHz</a></td>
|
||||
<td>499.00 €</td>
|
||||
<td>6</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div id="infobox">
|
||||
<h3>New Customers</h3>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Customer</th>
|
||||
<th>Orders</th>
|
||||
<th>Average</th>
|
||||
<th>Total</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><a href="#">Jennifer Kyrnin</a></td>
|
||||
<td>1</td>
|
||||
<td>5.6€</td>
|
||||
<td>14.95 €</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Mark Kyrnin</a></td>
|
||||
<td>2</td>
|
||||
<td>14.97€</td>
|
||||
<td>34.27 €</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Virgílio Cezar</a></td>
|
||||
<td>2</td>
|
||||
<td>15.31€</td>
|
||||
<td>61.39 €</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Todd Simonides</a></td>
|
||||
<td>5</td>
|
||||
<td>502.61€</td>
|
||||
<td>1472.56 €</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Carol Elihu</a></td>
|
||||
<td>1</td>
|
||||
<td>5.1€</td>
|
||||
<td>9.95 €</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div id="infobox" class="margin-left">
|
||||
<h3>Last 5 Reviews</h3>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Reviewer</th>
|
||||
<th>Product</th>
|
||||
<th>Action</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><a href="#">Jennifer Kyrnin</a></td>
|
||||
<td><a href="#">Apple iPhone 3G 8GB</a></td>
|
||||
<td><a href="#"><img src="img/icons/page_white_link.png" /></a><a href="#"><img src="img/icons/page_white_edit.png" /></a><a href="#"><img src="img/icons/page_white_delete.png" /></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Mark Kyrnin</a></td>
|
||||
<td><a href="#">Prenosnik HP 530 1,6GHz</a></td>
|
||||
<td><a href="#"><img src="img/icons/page_white_link.png" /></a><a href="#"><img src="img/icons/page_white_edit.png" /></a><a href="#"><img src="img/icons/page_white_delete.png" /></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Virgílio Cezar</a></td>
|
||||
<td><a href="#">Fuji FinePix S5800</a></td>
|
||||
<td><a href="#"><img src="img/icons/page_white_link.png" /></a><a href="#"><img src="img/icons/page_white_edit.png" /></a><a href="#"><img src="img/icons/page_white_delete.png" /></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Todd Simonides</a></td>
|
||||
<td><a href="#">Canon PIXMA MP140</a></td>
|
||||
<td><a href="#"><img src="img/icons/page_white_link.png" /></a><a href="#"><img src="img/icons/page_white_edit.png" /></a><a href="#"><img src="img/icons/page_white_delete.png" /></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Carol Elihu</a></td>
|
||||
<td><a href="#">Prenosnik HP 530 1,6GHz</a></td>
|
||||
<td><a href="#"><img src="img/icons/page_white_link.png" /></a><a href="#"><img src="img/icons/page_white_edit.png" /></a><a href="#"><img src="img/icons/page_white_delete.png" /></a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="sidebar">
|
||||
<ul>
|
||||
<li><h3><a href="#" class="house">Dashboard</a></h3>
|
||||
<ul>
|
||||
<li><a href="#" class="report">Sales Report</a></li>
|
||||
<li><a href="#" class="report_seo">SEO Report</a></li>
|
||||
<li><a href="#" class="search">Search</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><h3><a href="#" class="folder_table">Orders</a></h3>
|
||||
<ul>
|
||||
<li><a href="#" class="addorder">New order</a></li>
|
||||
<li><a href="#" class="shipping">Shipments</a></li>
|
||||
<li><a href="#" class="invoices">Invoices</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><h3><a href="#" class="manage">Manage</a></h3>
|
||||
<ul>
|
||||
<li><a href="#" class="manage_page">Pages</a></li>
|
||||
<li><a href="#" class="cart">Products</a></li>
|
||||
<li><a href="#" class="folder">Product categories</a></li>
|
||||
<li><a href="#" class="promotions">Promotions</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><h3><a href="#" class="user">Users</a></h3>
|
||||
<ul>
|
||||
<li><a href="#" class="useradd">Add user</a></li>
|
||||
<li><a href="#" class="group">User groups</a></li>
|
||||
<li><a href="#" class="search">Find user</a></li>
|
||||
<li><a href="#" class="online">Users online</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<div id="credits">
|
||||
Template by <a href="http://www.bloganje.com">Bloganje</a>
|
||||
</div>
|
||||
<div id="styleswitcher">
|
||||
<ul>
|
||||
<li><a href="javascript: document.cookie='theme='; window.location.reload();" title="Default" id="defswitch">d</a></li>
|
||||
<li><a href="javascript: document.cookie='theme=1'; window.location.reload();" title="Blue" id="blueswitch">b</a></li>
|
||||
<li><a href="javascript: document.cookie='theme=2'; window.location.reload();" title="Green" id="greenswitch">g</a></li>
|
||||
<li><a href="javascript: document.cookie='theme=3'; window.location.reload();" title="Brown" id="brownswitch">b</a></li>
|
||||
<li><a href="javascript: document.cookie='theme=4'; window.location.reload();" title="Mix" id="mixswitch">m</a></li>
|
||||
<li><a href="javascript: document.cookie='theme=5'; window.location.reload();" title="Mix" id="defswitch">m</a></li>
|
||||
</ul>
|
||||
</div><br />
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
100
admin/templates/stylish/blank.html
Normal file
@ -0,0 +1,100 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>Dashboard - Admin Template</title>
|
||||
<link rel="stylesheet" type="text/css" href="css/theme.css" />
|
||||
<link rel="stylesheet" type="text/css" href="css/style.css" />
|
||||
<script>
|
||||
var StyleFile = "theme" + document.cookie.charAt(6) + ".css";
|
||||
document.writeln('<link rel="stylesheet" type="text/css" href="css/' + StyleFile + '">');
|
||||
</script>
|
||||
<!--[if IE]>
|
||||
<link rel="stylesheet" type="text/css" href="css/ie-sucks.css" />
|
||||
<![endif]-->
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="container">
|
||||
<div id="header">
|
||||
<h2>My eCommerce Admin area</h2>
|
||||
<div id="topmenu">
|
||||
<ul>
|
||||
<li class="current"><a href="index.html">Dashboard</a></li>
|
||||
<li><a href="#">Orders</a></li>
|
||||
<li><a href="users.html">Users</a></li>
|
||||
<li><a href="#">Manage</a></li>
|
||||
<li><a href="#">CMS</a></li>
|
||||
<li><a href="#">Statistics</a></li>
|
||||
<li><a href="#">Settings</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div id="top-panel">
|
||||
<div id="panel">
|
||||
<ul>
|
||||
<li><a href="#" class="report">Sales Report</a></li>
|
||||
<li><a href="#" class="report_seo">SEO Report</a></li>
|
||||
<li><a href="#" class="search">Search</a></li>
|
||||
<li><a href="#" class="feed">RSS Feed</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div id="wrapper">
|
||||
<div id="content">
|
||||
<p> </p>
|
||||
<p> </p>
|
||||
</div>
|
||||
<div id="sidebar">
|
||||
<ul>
|
||||
<li><h3><a href="#" class="house">Dashboard</a></h3>
|
||||
<ul>
|
||||
<li><a href="#" class="report">Sales Report</a></li>
|
||||
<li><a href="#" class="report_seo">SEO Report</a></li>
|
||||
<li><a href="#" class="search">Search</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><h3><a href="#" class="folder_table">Orders</a></h3>
|
||||
<ul>
|
||||
<li><a href="#" class="addorder">New order</a></li>
|
||||
<li><a href="#" class="shipping">Shipments</a></li>
|
||||
<li><a href="#" class="invoices">Invoices</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><h3><a href="#" class="manage">Manage</a></h3>
|
||||
<ul>
|
||||
<li><a href="#" class="manage_page">Pages</a></li>
|
||||
<li><a href="#" class="cart">Products</a></li>
|
||||
<li><a href="#" class="folder">Product categories</a></li>
|
||||
<li><a href="#" class="promotions">Promotions</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><h3><a href="#" class="user">Users</a></h3>
|
||||
<ul>
|
||||
<li><a href="#" class="useradd">Add user</a></li>
|
||||
<li><a href="#" class="group">User groups</a></li>
|
||||
<li><a href="#" class="search">Find user</a></li>
|
||||
<li><a href="#" class="online">Users online</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<div id="credits">
|
||||
Template by <a href="http://www.bloganje.com">Bloganje</a>
|
||||
</div>
|
||||
<div id="styleswitcher">
|
||||
<ul>
|
||||
<li><a href="javascript: document.cookie='theme='; window.location.reload();" title="Default" id="defswitch">d</a></li>
|
||||
<li><a href="javascript: document.cookie='theme=1'; window.location.reload();" title="Blue" id="blueswitch">b</a></li>
|
||||
<li><a href="javascript: document.cookie='theme=2'; window.location.reload();" title="Green" id="greenswitch">g</a></li>
|
||||
<li><a href="javascript: document.cookie='theme=3'; window.location.reload();" title="Brown" id="brownswitch">b</a></li>
|
||||
<li><a href="javascript: document.cookie='theme=4'; window.location.reload();" title="Mix" id="mixswitch">m</a></li>
|
||||
</ul>
|
||||
</div><br />
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
121
admin/templates/stylish/css/Copy of theme.css
Normal file
@ -0,0 +1,121 @@
|
||||
body{
|
||||
background:#f7f6f0 url(../img/bg.jpg) repeat-x top;
|
||||
color: #202020;
|
||||
}
|
||||
a, a:visited{
|
||||
color:#993300;
|
||||
}
|
||||
input{
|
||||
border:1px solid #e8e7e1;
|
||||
}
|
||||
select{
|
||||
border:1px solid #e8e7e1;
|
||||
}
|
||||
#header h2{
|
||||
color:#FFF;
|
||||
}
|
||||
#content{
|
||||
background:#FFF;
|
||||
}
|
||||
#sidebar{
|
||||
background:#FFF;
|
||||
}
|
||||
#sidebar h3{
|
||||
background:#f7f6f0;
|
||||
border-bottom:1px solid #e8e7e1;
|
||||
}
|
||||
#topmenu a,#topmenu a:visited{
|
||||
color:#f7f6f0;
|
||||
background:#cc3300;
|
||||
}
|
||||
#topmenu a:hover{
|
||||
color: #FFF;
|
||||
}
|
||||
#topmenu .current a, #topmenu .current a:hover, #topmenu .current a:visited{
|
||||
color:#993400;
|
||||
background: #FFF url(../img/bg_menu_red.jpg) repeat-x top;
|
||||
border-left: #FFF 1px solid;
|
||||
border-right: #FFF 1px solid;
|
||||
}
|
||||
#top-panel{
|
||||
background:#FFF;
|
||||
}
|
||||
table{
|
||||
background:none;
|
||||
}
|
||||
td, th{
|
||||
border:1px solid #e8e7e1;
|
||||
}
|
||||
thead{
|
||||
background:#f7f6f0;
|
||||
}
|
||||
#styleswitcher{
|
||||
background:#FFFFFF;
|
||||
}
|
||||
#footer{
|
||||
background:#FFF;
|
||||
}
|
||||
#box{
|
||||
border:1px solid #e8e7e1;
|
||||
}
|
||||
#box h3{
|
||||
background:#f7f6f0;
|
||||
border-bottom:1px solid #e8e7e1;
|
||||
color:#993300;
|
||||
}
|
||||
/***************
|
||||
Forms
|
||||
***************/
|
||||
form#form fieldset {
|
||||
border:1px solid #e8e7e1;
|
||||
}
|
||||
form#form legend {
|
||||
border:1px solid #e8e7e1;
|
||||
background:#fff url(../img/form_red.gif) repeat-x center left;
|
||||
color:#993300;
|
||||
}
|
||||
form#form input {
|
||||
border:1px solid #e8e7e1;
|
||||
background:#fff url(../img/form_red.gif) repeat-x top left;
|
||||
}
|
||||
form#form textarea {
|
||||
border:1px solid #e8e7e1;
|
||||
background:#fff url(../img/form_red.gif) repeat-x bottom left;
|
||||
}
|
||||
form#form option {
|
||||
background:#FFF;
|
||||
}
|
||||
form#form optgroup {
|
||||
background:#e8e7e1;
|
||||
}
|
||||
form#form optgroup option {
|
||||
|
||||
}
|
||||
form#form #button1, form#form #button2 {
|
||||
color:#c00;
|
||||
}
|
||||
form#form #button1:hover, form#form #button2:hover {
|
||||
color:#000;
|
||||
}
|
||||
/***************
|
||||
Home
|
||||
***************/
|
||||
#infobox{
|
||||
border:1px solid #e8e7e1;
|
||||
}
|
||||
#infobox h3{
|
||||
background:#f7f6f0;
|
||||
border-bottom:1px solid #e8e7e1;
|
||||
color:#993300;
|
||||
}
|
||||
#rightnow {
|
||||
border:1px solid #e8e7e1;
|
||||
}
|
||||
#rightnow .reallynow {
|
||||
background:#f7f6f0;
|
||||
color:#993300;
|
||||
}
|
||||
#rightnow h3{
|
||||
background:#f7f6f0;
|
||||
border-bottom:1px solid #e8e7e1;
|
||||
}
|
21
admin/templates/stylish/css/ie-sucks.css
Normal file
@ -0,0 +1,21 @@
|
||||
#content{
|
||||
width:740px;
|
||||
}
|
||||
#topmenu{
|
||||
margin-top:26px;
|
||||
}
|
||||
#sidebar{
|
||||
width:160px;
|
||||
}
|
||||
#sidebar ul{
|
||||
width:150px;
|
||||
}
|
||||
#sidebar ul li ul{
|
||||
width:140px;
|
||||
}
|
||||
#sidebar h3{
|
||||
margin-bottom:5px;
|
||||
}
|
||||
#rightnow .reallynow a {
|
||||
padding:0 0 0 10px;
|
||||
}
|
68
admin/templates/stylish/css/iepngfix.htc
Normal file
@ -0,0 +1,68 @@
|
||||
<public:component>
|
||||
<public:attach event="onpropertychange" onevent="doFix()" />
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
// IE5.5+ PNG Alpha Fix v1.0RC4
|
||||
// (c) 2004-2005 Angus Turnbull http://www.twinhelix.com
|
||||
|
||||
// This is licensed under the CC-GNU LGPL, version 2.1 or later.
|
||||
// For details, see: http://creativecommons.org/licenses/LGPL/2.1/
|
||||
|
||||
|
||||
// This must be a path to a blank image. That's all the configuration you need.
|
||||
if (typeof blankImg == 'undefined') var blankImg = 'blank.gif';
|
||||
|
||||
|
||||
var f = 'DXImageTransform.Microsoft.AlphaImageLoader';
|
||||
|
||||
function filt(s, m)
|
||||
{
|
||||
if (filters[f])
|
||||
{
|
||||
filters[f].enabled = s ? true : false;
|
||||
if (s) with (filters[f]) { src = s; sizingMethod = m }
|
||||
}
|
||||
else if (s) style.filter = 'progid:'+f+'(src="'+s+'",sizingMethod="'+m+'")';
|
||||
}
|
||||
|
||||
function doFix()
|
||||
{
|
||||
// Assume IE7 is OK.
|
||||
if (!/MSIE (5\.5|6\.)/.test(navigator.userAgent) ||
|
||||
(event && !/(background|src)/.test(event.propertyName))) return;
|
||||
|
||||
var bgImg = currentStyle.backgroundImage || style.backgroundImage;
|
||||
|
||||
if (tagName == 'IMG')
|
||||
{
|
||||
if ((/\.png$/i).test(src))
|
||||
{
|
||||
if (currentStyle.width == 'auto' && currentStyle.height == 'auto')
|
||||
style.width = offsetWidth + 'px';
|
||||
filt(src, 'scale');
|
||||
src = blankImg;
|
||||
}
|
||||
else if (src.indexOf(blankImg) < 0) filt();
|
||||
}
|
||||
else if (bgImg && bgImg != 'none')
|
||||
{
|
||||
if (bgImg.match(/^url[("']+(.*\.png)[)"']+$/i))
|
||||
{
|
||||
var s = RegExp.$1;
|
||||
if (currentStyle.width == 'auto' && currentStyle.height == 'auto')
|
||||
style.width = offsetWidth + 'px';
|
||||
style.backgroundImage = 'none';
|
||||
filt(s, 'crop');
|
||||
// IE link fix.
|
||||
for (var n = 0; n < childNodes.length; n++)
|
||||
if (childNodes[n].style) childNodes[n].style.position = 'relative';
|
||||
}
|
||||
else filt();
|
||||
}
|
||||
}
|
||||
|
||||
doFix();
|
||||
|
||||
</script>
|
||||
</public:component>
|
397
admin/templates/stylish/css/style.css
Normal file
@ -0,0 +1,397 @@
|
||||
/*********************
|
||||
HTML Elements
|
||||
*********************/
|
||||
*{
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
img, div,a { behavior: url(css/iepngfix.htc) }
|
||||
body{
|
||||
font-size: 12px;
|
||||
font-family: Arial, Tahoma, Verdana;
|
||||
}
|
||||
a, a:visited{
|
||||
text-decoration:none;
|
||||
}
|
||||
img{
|
||||
border:0;
|
||||
margin:1px;
|
||||
}
|
||||
p{
|
||||
padding:3px;
|
||||
}
|
||||
h2{
|
||||
|
||||
}
|
||||
input{
|
||||
padding:2px;
|
||||
}
|
||||
select{
|
||||
padding:2px;
|
||||
}
|
||||
/*********************
|
||||
Status
|
||||
*********************/
|
||||
#status {
|
||||
position: absolute; top: 10px; left: 10px;
|
||||
margin: 0px;
|
||||
float: right;
|
||||
font-size: 12px;
|
||||
}
|
||||
#status .success {
|
||||
margin: 0px:
|
||||
}
|
||||
#version {
|
||||
position: absolute; top: 10px; right: 10px;
|
||||
float: right;
|
||||
text-align: right;
|
||||
font-size: 12px;
|
||||
}
|
||||
/*********************
|
||||
Structure
|
||||
*********************/
|
||||
#container{
|
||||
width:960px;
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
}
|
||||
#header{
|
||||
width:960px;
|
||||
}
|
||||
#header h2{
|
||||
margin-top:20px;
|
||||
}
|
||||
#content{
|
||||
width:740px;
|
||||
float:left;
|
||||
margin:10px 0 10px 0;
|
||||
padding:10px;
|
||||
}
|
||||
#sidebar{
|
||||
background:#FFF;
|
||||
width:170px;
|
||||
float:right;
|
||||
margin:10px 0 10px 0;
|
||||
padding:10px;
|
||||
}
|
||||
#footer{
|
||||
clear:both;
|
||||
padding:5px;
|
||||
margin-top:10px;
|
||||
}
|
||||
#box h3{
|
||||
padding:5px;
|
||||
font-size:14px;
|
||||
}
|
||||
/*********************
|
||||
Sidebar
|
||||
*********************/
|
||||
#sidebar ul{
|
||||
list-style:none;
|
||||
line-height:22px;
|
||||
}
|
||||
#sidebar ul li a,#sidebar ul li a:visited{
|
||||
padding-left:19px;
|
||||
text-decoration:none;
|
||||
margin:0 3px;
|
||||
display:block;
|
||||
}
|
||||
#sidebar ul li a:hover{
|
||||
text-decoration:underline;
|
||||
}
|
||||
#sidebar ul li ul{
|
||||
margin-left:10px;
|
||||
}
|
||||
#sidebar h3{
|
||||
padding:2px;
|
||||
font-size:14px;
|
||||
}
|
||||
/*********************
|
||||
TopMenu, Top-Panel
|
||||
*********************/
|
||||
#topmenu{
|
||||
margin-top:33px;
|
||||
width:700px;
|
||||
float:left;
|
||||
voice-family:inherit;
|
||||
}
|
||||
#topmenu ul{
|
||||
list-style:none;
|
||||
line-height:25px;
|
||||
}
|
||||
#topmenu li{
|
||||
display:inline;
|
||||
}
|
||||
#topmenu a,#topmenu a:visited{
|
||||
padding:5px 12px 5px 12px;
|
||||
text-decoration:none;
|
||||
}
|
||||
#topmenu .current a, #topmenu .current a:hover, #topmenu .current a:visited{
|
||||
padding:5px 12px 5px 12px;
|
||||
font-weight:bold;
|
||||
|
||||
}
|
||||
#top-panel{
|
||||
background:#FFF;
|
||||
padding:5px;
|
||||
height:20px;
|
||||
float:left;
|
||||
width:950px;
|
||||
}
|
||||
#top-panel ul{
|
||||
list-style:none;
|
||||
}
|
||||
#top-panel ul li{
|
||||
display:inline;
|
||||
line-height:20px;
|
||||
}
|
||||
#top-panel ul li a{
|
||||
padding-left:19px;
|
||||
text-decoration:none;
|
||||
margin:0 3px;
|
||||
display:inline-block;
|
||||
}
|
||||
#top-panel a:hover{
|
||||
text-decoration:underline;
|
||||
}
|
||||
/*********************
|
||||
Other
|
||||
*********************/
|
||||
.a-right{text-align:right;}
|
||||
.a-left{text-align:left;}
|
||||
.a-center{text-align:center;}
|
||||
#pager{
|
||||
margin:5px;
|
||||
height:25px;
|
||||
}
|
||||
#styleswitcher{
|
||||
float:right;
|
||||
}
|
||||
#styleswitcher ul{
|
||||
list-style:none;
|
||||
line-height:10px;
|
||||
}
|
||||
#styleswitcher li{
|
||||
height:12px;
|
||||
display:inline;
|
||||
}
|
||||
#footer ul {
|
||||
list-style:none;
|
||||
}
|
||||
#footer li {
|
||||
display:inline;
|
||||
}
|
||||
a#defswitch {
|
||||
width:15px;
|
||||
height:10px;
|
||||
margin: 3px 0 3px 0;
|
||||
background-color:#bd3f09;
|
||||
font-size: 8px;
|
||||
color:#bd3f09;
|
||||
display:inline-block;
|
||||
}
|
||||
a#blueswitch {
|
||||
width:15px;
|
||||
height:10px;
|
||||
margin: 3px 0 3px 0;
|
||||
background-color:#375b91;
|
||||
font-size: 8px;
|
||||
color:#375b91;
|
||||
display:inline-block;
|
||||
}
|
||||
a#greenswitch {
|
||||
width:15px;
|
||||
height:10px;
|
||||
margin: 3px 0 3px 0;
|
||||
background-color:#d0e0b8;
|
||||
font-size: 8px;
|
||||
color:#d0e0b8;
|
||||
display:inline-block;
|
||||
}
|
||||
a#brownswitch {
|
||||
width:15px;
|
||||
height:10px;
|
||||
margin: 3px 0 3px 0;
|
||||
background-color:#654322;
|
||||
font-size: 8px;
|
||||
color:#654322;
|
||||
display:inline-block;
|
||||
}
|
||||
a#mixswitch {
|
||||
width:15px;
|
||||
height:10px;
|
||||
margin: 3px 0 3px 0;
|
||||
background-color:#294145;
|
||||
font-size: 8px;
|
||||
color:#294145;
|
||||
display:inline-block;
|
||||
}
|
||||
#credits{
|
||||
clear:both;
|
||||
width:250px;
|
||||
float:left;
|
||||
}
|
||||
/*********************
|
||||
Tables
|
||||
*********************/
|
||||
table{
|
||||
margin:5px;
|
||||
border-collapse: collapse;
|
||||
table-layout:automatic;
|
||||
width:98%;
|
||||
}
|
||||
td, th{
|
||||
padding: 2px;
|
||||
}
|
||||
thead{
|
||||
|
||||
}
|
||||
/*********************
|
||||
Home
|
||||
*********************/
|
||||
#infowrap li{
|
||||
display:inline:
|
||||
}
|
||||
#infobox{
|
||||
width:365px;
|
||||
float:left;
|
||||
margin-top:10px;
|
||||
}
|
||||
#infobox h3{
|
||||
padding:5px;
|
||||
font-size:14px;
|
||||
}
|
||||
.margin-left{
|
||||
margin-left:5px;
|
||||
}
|
||||
#rightnow .reallynow {
|
||||
padding: 5px;
|
||||
font-size:14px;
|
||||
}
|
||||
#rightnow h3{
|
||||
padding:2px;
|
||||
padding: 0 10px;
|
||||
font-size:14px;
|
||||
}
|
||||
#rightnow .reallynow span {
|
||||
display: block;
|
||||
text-align: left;
|
||||
float: left;
|
||||
padding:0 2px;
|
||||
font-size:14px
|
||||
}
|
||||
#rightnow .reallynow a {
|
||||
text-decoration:none;
|
||||
display: block;
|
||||
text-align: right;
|
||||
float: right;
|
||||
padding:0 0 0 18px;
|
||||
margin-left:4px;
|
||||
font-weight:normal;
|
||||
font-size:12px;
|
||||
}
|
||||
#rightnow .reallynow a:hover{
|
||||
text-decoration:underline;
|
||||
}
|
||||
#rightnow .youhave {
|
||||
font-size: 12px;
|
||||
padding: 10px;
|
||||
}
|
||||
#rightnow a {
|
||||
font-weight: bold;
|
||||
}
|
||||
/*********************
|
||||
Forms
|
||||
*********************/
|
||||
form{
|
||||
padding:10px;
|
||||
margin:0 auto;
|
||||
}
|
||||
form#form fieldset {
|
||||
display:block;
|
||||
padding:5px 10px 5px 10px;
|
||||
line-height:20px;
|
||||
margin-bottom:10px;
|
||||
}
|
||||
form#form legend {
|
||||
font-size:12px;
|
||||
font-weight:bold;
|
||||
margin-bottom:5px;
|
||||
padding:3px;
|
||||
width:254px;
|
||||
}
|
||||
form#form label {
|
||||
clear:left;
|
||||
display:block;
|
||||
float:left;
|
||||
width:100px;
|
||||
text-align:right;
|
||||
padding-right:10px;
|
||||
margin-bottom:5px;
|
||||
}
|
||||
form#form input {
|
||||
padding:3px;
|
||||
margin-bottom:5px;
|
||||
}
|
||||
form#form select {
|
||||
margin-left:5px;
|
||||
}
|
||||
form#form textarea {
|
||||
width:410px;
|
||||
height:200px;
|
||||
padding:5px;
|
||||
overflow:auto;
|
||||
}
|
||||
form#form option {
|
||||
background:#FFF;
|
||||
}
|
||||
form#form optgroup option {
|
||||
|
||||
}
|
||||
form#form #button1, form#form #button2 {
|
||||
padding-right:5px;
|
||||
cursor:pointer;
|
||||
width:205px;
|
||||
margin-left:8px;
|
||||
font-weight:bold;
|
||||
}
|
||||
form#form #button1:hover, form#form #button2:hover {
|
||||
background-position:center left;
|
||||
}
|
||||
|
||||
/*********************
|
||||
Icons
|
||||
*********************/
|
||||
.icon{
|
||||
padding-left:19px;
|
||||
text-decoration:none;
|
||||
height:20px;
|
||||
font-size:12x;
|
||||
margin:0 3px;
|
||||
display:inline-block;
|
||||
line-height:20px;
|
||||
}
|
||||
.user{background:transparent url(../img/icons/user.png) no-repeat left;}
|
||||
.useradd{background:transparent url(../img/icons/user_add.png) no-repeat left;}
|
||||
.group{background:transparent url(../img/icons/group.png) no-repeat left;}
|
||||
.search{background:transparent url(../img/icons/magnifier.png) no-repeat left;}
|
||||
.online{background:transparent url(../img/icons/world.png) no-repeat left;}
|
||||
.pagenew{background:transparent url(../img/icons/page_add.png) no-repeat left;}
|
||||
.rss{background:transparent url(../img/icons/rss.png) no-repeat left;}
|
||||
.feed{background:transparent url(../img/icons/feed.png) no-repeat left;}
|
||||
.report{background:transparent url(../img/icons/report.png) no-repeat left;}
|
||||
.house{background:transparent url(../img/icons/house.png) no-repeat left;}
|
||||
.manage{background:transparent url(../img/icons/cog.png) no-repeat left;}
|
||||
.manage_page{background:transparent url(../img/icons/page_gear.png) no-repeat left;}
|
||||
.folder{background:transparent url(../img/icons/folder.png) no-repeat left;}
|
||||
.promotions{background:transparent url(../img/icons/coins.png) no-repeat left;}
|
||||
.cart{background:transparent url(../img/icons/cart.png) no-repeat left;}
|
||||
.folder_table{background:transparent url(../img/icons/folder_page.png) no-repeat left;}
|
||||
.shipping{background:transparent url(../img/icons/car.png) no-repeat left;}
|
||||
.invoices{background:transparent url(../img/icons/page_white_text_width.png) no-repeat left;}
|
||||
.addorder{background:transparent url(../img/icons/folder_page_add.png) no-repeat left;}
|
||||
.add{background:transparent url(../img/icons/add.png) no-repeat left;}
|
||||
.app_add{background:transparent url(../img/icons/application_add.png) no-repeat left;}
|
||||
.report_seo{background:transparent url(../img/icons/report_link.png) no-repeat left;}
|
||||
.modules{background:transparent url(../img/icons/bricks.png) no-repeat left;}
|
||||
.modules_manage{background:transparent url(../img/icons/bricks_gear.png) no-repeat left;}
|
51
admin/templates/stylish/css/switch.css
Normal file
@ -0,0 +1,51 @@
|
||||
#footer ul {
|
||||
list-style:none;
|
||||
}
|
||||
#footer li {
|
||||
display:inline;
|
||||
}
|
||||
a#defswitch {
|
||||
width:15px;
|
||||
height:10px;
|
||||
margin: 3px 0 3px 0;
|
||||
background-color:#bd3f09;
|
||||
font-size: 8px;
|
||||
color:#bd3f09;
|
||||
display:inline-block;
|
||||
}
|
||||
a#blueswitch {
|
||||
width:15px;
|
||||
height:10px;
|
||||
margin: 3px 0 3px 0;
|
||||
background-color:#375b91;
|
||||
font-size: 8px;
|
||||
color:#375b91;
|
||||
display:inline-block;
|
||||
}
|
||||
a#greenswitch {
|
||||
width:15px;
|
||||
height:10px;
|
||||
margin: 3px 0 3px 0;
|
||||
background-color:#d0e0b8;
|
||||
font-size: 8px;
|
||||
color:#d0e0b8;
|
||||
display:inline-block;
|
||||
}
|
||||
a#brownswitch {
|
||||
width:15px;
|
||||
height:10px;
|
||||
margin: 3px 0 3px 0;
|
||||
background-color:#654322;
|
||||
font-size: 8px;
|
||||
color:#654322;
|
||||
display:inline-block;
|
||||
}
|
||||
a#mixswitch {
|
||||
width:15px;
|
||||
height:10px;
|
||||
margin: 3px 0 3px 0;
|
||||
background-color:#294145;
|
||||
font-size: 8px;
|
||||
color:#294145;
|
||||
display:inline-block;
|
||||
}
|
121
admin/templates/stylish/css/theme.css
Normal file
@ -0,0 +1,121 @@
|
||||
body{
|
||||
background:#f7f6f0 url(../img/bg.jpg) repeat-x top;
|
||||
color: #202020;
|
||||
}
|
||||
a, a:visited{
|
||||
color:#a43708;
|
||||
}
|
||||
input{
|
||||
border:1px solid #e8e7e1;
|
||||
}
|
||||
select{
|
||||
border:1px solid #e8e7e1;
|
||||
}
|
||||
#header h2{
|
||||
color:#FFF;
|
||||
}
|
||||
#content{
|
||||
background:#FFF;
|
||||
}
|
||||
#sidebar{
|
||||
background:#FFF;
|
||||
}
|
||||
#sidebar h3{
|
||||
background:#f7f6f0;
|
||||
border-bottom:1px solid #e8e7e1;
|
||||
}
|
||||
#topmenu a,#topmenu a:visited{
|
||||
color:#f7f6f0;
|
||||
background:#bd3f09;
|
||||
}
|
||||
#topmenu a:hover{
|
||||
color: #FFF;
|
||||
}
|
||||
#topmenu .current a, #topmenu .current a:hover, #topmenu .current a:visited{
|
||||
color:#993400;
|
||||
background: #FFF url(../img/bg_menu_red.jpg) repeat-x top;
|
||||
border-left: #FFF 1px solid;
|
||||
border-right: #FFF 1px solid;
|
||||
}
|
||||
#top-panel{
|
||||
background:#FFF;
|
||||
}
|
||||
table{
|
||||
background:none;
|
||||
}
|
||||
td, th{
|
||||
border:1px solid #e8e7e1;
|
||||
}
|
||||
thead{
|
||||
background:#f7f6f0;
|
||||
}
|
||||
#styleswitcher{
|
||||
background:#FFFFFF;
|
||||
}
|
||||
#footer{
|
||||
background:#FFF;
|
||||
}
|
||||
#box{
|
||||
border:1px solid #e8e7e1;
|
||||
}
|
||||
#box h3{
|
||||
background:#f7f6f0;
|
||||
border-bottom:1px solid #e8e7e1;
|
||||
color:#a43708;
|
||||
}
|
||||
/***************
|
||||
Forms
|
||||
***************/
|
||||
form#form fieldset {
|
||||
border:1px solid #e8e7e1;
|
||||
}
|
||||
form#form legend {
|
||||
border:1px solid #e8e7e1;
|
||||
background:#fff url(../img/form_red.gif) repeat-x center left;
|
||||
color:#a43708;
|
||||
}
|
||||
form#form input {
|
||||
border:1px solid #e8e7e1;
|
||||
background:#fff url(../img/form_red.gif) repeat-x top left;
|
||||
}
|
||||
form#form textarea {
|
||||
border:1px solid #e8e7e1;
|
||||
background:#fff url(../img/form_red.gif) repeat-x bottom left;
|
||||
}
|
||||
form#form option {
|
||||
background:#FFF;
|
||||
}
|
||||
form#form optgroup {
|
||||
background:#e8e7e1;
|
||||
}
|
||||
form#form optgroup option {
|
||||
|
||||
}
|
||||
form#form #button1, form#form #button2 {
|
||||
color:#c00;
|
||||
}
|
||||
form#form #button1:hover, form#form #button2:hover {
|
||||
color:#000;
|
||||
}
|
||||
/***************
|
||||
Home
|
||||
***************/
|
||||
#infobox{
|
||||
border:1px solid #e8e7e1;
|
||||
}
|
||||
#infobox h3{
|
||||
background:#f7f6f0;
|
||||
border-bottom:1px solid #e8e7e1;
|
||||
color:#a43708;
|
||||
}
|
||||
#rightnow {
|
||||
border:1px solid #e8e7e1;
|
||||
}
|
||||
#rightnow .reallynow {
|
||||
background:#f7f6f0;
|
||||
color:#a43708;
|
||||
}
|
||||
#rightnow h3{
|
||||
background:#f7f6f0;
|
||||
border-bottom:1px solid #e8e7e1;
|
||||
}
|
121
admin/templates/stylish/css/theme1.css
Normal file
@ -0,0 +1,121 @@
|
||||
body{
|
||||
background:#f3f9ff url(../img/bg_blue.jpg) repeat-x top;
|
||||
color: #202020;
|
||||
}
|
||||
a, a:visited{
|
||||
color:#375b91;
|
||||
}
|
||||
input{
|
||||
border:1px solid #d9e6f0;
|
||||
}
|
||||
select{
|
||||
border:1px solid #d9e6f0;
|
||||
}
|
||||
#header h2{
|
||||
color:#FFF;
|
||||
}
|
||||
#content{
|
||||
background:#FFF;
|
||||
}
|
||||
#sidebar{
|
||||
background:#FFF;
|
||||
}
|
||||
#sidebar h3{
|
||||
background:#f3f9ff;
|
||||
border-bottom:1px solid #d9e6f0;
|
||||
}
|
||||
#topmenu a,#topmenu a:visited{
|
||||
color:#FFF;
|
||||
background:#7e9dcc;
|
||||
}
|
||||
#topmenu a:hover{
|
||||
color: #FFF;
|
||||
}
|
||||
#topmenu .current a, #topmenu .current a:hover, #topmenu .current a:visited{
|
||||
color:#375b91;
|
||||
background: #FFF url(../img/bg_menu_blue.jpg) repeat-x top;
|
||||
border-left: #FFF 1px solid;
|
||||
border-right: #FFF 1px solid;
|
||||
}
|
||||
#top-panel{
|
||||
background:#FFF;
|
||||
}
|
||||
table{
|
||||
background:none;
|
||||
}
|
||||
td, th{
|
||||
border:1px solid #d9e6f0;
|
||||
}
|
||||
thead{
|
||||
background:#f3f9ff;
|
||||
}
|
||||
#styleswitcher{
|
||||
background:#FFFFFF;
|
||||
}
|
||||
#footer{
|
||||
background:#FFF;
|
||||
}
|
||||
#box{
|
||||
border:1px solid #d9e6f0;
|
||||
}
|
||||
#box h3{
|
||||
background:#f3f9ff;
|
||||
border-bottom:1px solid #d9e6f0;
|
||||
color:#375b91;
|
||||
}
|
||||
/***************
|
||||
Forms
|
||||
***************/
|
||||
form#form fieldset {
|
||||
border:1px solid #d9e6f0;
|
||||
}
|
||||
form#form legend {
|
||||
border:1px solid #d9e6f0;
|
||||
background:#fff url(../img/form_blue.gif) repeat-x center left;
|
||||
color:#375b91;
|
||||
}
|
||||
form#form input {
|
||||
border:1px solid #d9e6f0;
|
||||
background:#fff url(../img/form_blue.gif) repeat-x top left;
|
||||
}
|
||||
form#form textarea {
|
||||
border:1px solid #d9e6f0;
|
||||
background:#fff url(../img/form_blue.gif) repeat-x bottom left;
|
||||
}
|
||||
form#form option {
|
||||
background:#FFF;
|
||||
}
|
||||
form#form optgroup {
|
||||
background:#d9e6f0;
|
||||
}
|
||||
form#form optgroup option {
|
||||
|
||||
}
|
||||
form#form #button1, form#form #button2 {
|
||||
color:#375b91;
|
||||
}
|
||||
form#form #button1:hover, form#form #button2:hover {
|
||||
color:#000;
|
||||
}
|
||||
/***************
|
||||
Home
|
||||
***************/
|
||||
#infobox{
|
||||
border:1px solid #d9e6f0;
|
||||
}
|
||||
#infobox h3{
|
||||
background:#f3f9ff;
|
||||
border-bottom:1px solid #d9e6f0;
|
||||
color:#375b91;
|
||||
}
|
||||
#rightnow {
|
||||
border:1px solid #d9e6f0;
|
||||
}
|
||||
#rightnow .reallynow {
|
||||
background:#f3f9ff;
|
||||
color:#375b91;
|
||||
}
|
||||
#rightnow h3{
|
||||
background:#f3f9ff;
|
||||
border-bottom:1px solid #d9e6f0;
|
||||
}
|
121
admin/templates/stylish/css/theme2.css
Normal file
@ -0,0 +1,121 @@
|
||||
body{
|
||||
background:#f0f7e8 url(../img/bg_light_green.jpg) repeat-x top;
|
||||
color: #202020;
|
||||
}
|
||||
a, a:visited{
|
||||
color:#93ad7e;
|
||||
}
|
||||
input{
|
||||
border:1px solid #e7eedf;
|
||||
}
|
||||
select{
|
||||
border:1px solid #e7eedf;
|
||||
}
|
||||
#header h2{
|
||||
color:#FFF;
|
||||
}
|
||||
#content{
|
||||
background:#FFF;
|
||||
}
|
||||
#sidebar{
|
||||
background:#FFF;
|
||||
}
|
||||
#sidebar h3{
|
||||
background:#f0f7e8;
|
||||
border-bottom:1px solid #e7eedf;
|
||||
}
|
||||
#topmenu a,#topmenu a:visited{
|
||||
color:#93ad7e;
|
||||
background:#e7eedc;
|
||||
}
|
||||
#topmenu a:hover{
|
||||
color: #93ad7e;
|
||||
}
|
||||
#topmenu .current a, #topmenu .current a:hover, #topmenu .current a:visited{
|
||||
color:#93ad7e;
|
||||
background: #FFF url(../img/bg_menu_green.jpg) repeat-x top;
|
||||
border-left: #FFF 1px solid;
|
||||
border-right: #FFF 1px solid;
|
||||
}
|
||||
#top-panel{
|
||||
background:#FFF;
|
||||
}
|
||||
table{
|
||||
background:none;
|
||||
}
|
||||
td, th{
|
||||
border:1px solid #e7eedf;
|
||||
}
|
||||
thead{
|
||||
background:#f0f7e8;
|
||||
}
|
||||
#styleswitcher{
|
||||
background:#FFFFFF;
|
||||
}
|
||||
#footer{
|
||||
background:#FFF;
|
||||
}
|
||||
#box{
|
||||
border:1px solid #e7eedf;
|
||||
}
|
||||
#box h3{
|
||||
background:#f0f7e8;
|
||||
border-bottom:1px solid #e7eedf;
|
||||
color:#93ad7e;
|
||||
}
|
||||
/***************
|
||||
Forms
|
||||
***************/
|
||||
form#form fieldset {
|
||||
border:1px solid #e7eedf;
|
||||
}
|
||||
form#form legend {
|
||||
border:1px solid #e7eedf;
|
||||
background:#fff url(../img/form_green.gif) repeat-x center left;
|
||||
color:#93ad7e;
|
||||
}
|
||||
form#form input {
|
||||
border:1px solid #e7eedf;
|
||||
background:#fff url(../img/form_green.gif) repeat-x top left;
|
||||
}
|
||||
form#form textarea {
|
||||
border:1px solid #e7eedf;
|
||||
background:#fff url(../img/form_green.gif) repeat-x bottom left;
|
||||
}
|
||||
form#form option {
|
||||
background:#FFF;
|
||||
}
|
||||
form#form optgroup {
|
||||
background:#e7eedf;
|
||||
}
|
||||
form#form optgroup option {
|
||||
|
||||
}
|
||||
form#form #button1, form#form #button2 {
|
||||
color:#93ad7e;
|
||||
}
|
||||
form#form #button1:hover, form#form #button2:hover {
|
||||
color:#000;
|
||||
}
|
||||
/***************
|
||||
Home
|
||||
***************/
|
||||
#infobox{
|
||||
border:1px solid #e7eedf;
|
||||
}
|
||||
#infobox h3{
|
||||
background:#f0f7e8;
|
||||
border-bottom:1px solid #e7eedf;
|
||||
color:#93ad7e;
|
||||
}
|
||||
#rightnow {
|
||||
border:1px solid #e7eedf;
|
||||
}
|
||||
#rightnow .reallynow {
|
||||
background:#f0f7e8;
|
||||
color:#93ad7e;
|
||||
}
|
||||
#rightnow h3{
|
||||
background:#f0f7e8;
|
||||
border-bottom:1px solid #e7eedf;
|
||||
}
|
121
admin/templates/stylish/css/theme3.css
Normal file
@ -0,0 +1,121 @@
|
||||
body{
|
||||
background:#f7f6f1 url(../img/bg_brown.jpg) repeat-x top;
|
||||
color: #202020;
|
||||
}
|
||||
a, a:visited{
|
||||
color:#654322;
|
||||
}
|
||||
input{
|
||||
border:1px solid #e9e8e3;
|
||||
}
|
||||
select{
|
||||
border:1px solid #e9e8e3;
|
||||
}
|
||||
#header h2{
|
||||
color:#FFF;
|
||||
}
|
||||
#content{
|
||||
background:#FFF;
|
||||
}
|
||||
#sidebar{
|
||||
background:#FFF;
|
||||
}
|
||||
#sidebar h3{
|
||||
background:#f7f6f1;
|
||||
border-bottom:1px solid #e9e8e3;
|
||||
}
|
||||
#topmenu a,#topmenu a:visited{
|
||||
color:#FFF;
|
||||
background:#8f6831;
|
||||
}
|
||||
#topmenu a:hover{
|
||||
color: #654322;
|
||||
}
|
||||
#topmenu .current a, #topmenu .current a:hover, #topmenu .current a:visited{
|
||||
color:#654322;
|
||||
background: #FFF url(../img/bg_menu_brown.jpg) repeat-x top;
|
||||
border-left: #FFF 1px solid;
|
||||
border-right: #FFF 1px solid;
|
||||
}
|
||||
#top-panel{
|
||||
background:#FFF;
|
||||
}
|
||||
table{
|
||||
background:none;
|
||||
}
|
||||
td, th{
|
||||
border:1px solid #e9e8e3;
|
||||
}
|
||||
thead{
|
||||
background:#f7f6f1;
|
||||
}
|
||||
#styleswitcher{
|
||||
background:#FFFFFF;
|
||||
}
|
||||
#footer{
|
||||
background:#FFF;
|
||||
}
|
||||
#box{
|
||||
border:1px solid #e9e8e3;
|
||||
}
|
||||
#box h3{
|
||||
background:#f7f6f1;
|
||||
border-bottom:1px solid #e9e8e3;
|
||||
color:#654322;
|
||||
}
|
||||
/***************
|
||||
Forms
|
||||
***************/
|
||||
form#form fieldset {
|
||||
border:1px solid #e9e8e3;
|
||||
}
|
||||
form#form legend {
|
||||
border:1px solid #e9e8e3;
|
||||
background:#fff url(../img/form_brown.gif) repeat-x center left;
|
||||
color:#654322;
|
||||
}
|
||||
form#form input {
|
||||
border:1px solid #e9e8e3;
|
||||
background:#fff url(../img/form_brown.gif) repeat-x top left;
|
||||
}
|
||||
form#form textarea {
|
||||
border:1px solid #e9e8e3;
|
||||
background:#fff url(../img/form_brown.gif) repeat-x bottom left;
|
||||
}
|
||||
form#form option {
|
||||
background:#FFF;
|
||||
}
|
||||
form#form optgroup {
|
||||
background:#e9e8e3;
|
||||
}
|
||||
form#form optgroup option {
|
||||
|
||||
}
|
||||
form#form #button1, form#form #button2 {
|
||||
color:#654322;
|
||||
}
|
||||
form#form #button1:hover, form#form #button2:hover {
|
||||
color:#000;
|
||||
}
|
||||
/***************
|
||||
Home
|
||||
***************/
|
||||
#infobox{
|
||||
border:1px solid #e9e8e3;
|
||||
}
|
||||
#infobox h3{
|
||||
background:#f7f6f1;
|
||||
border-bottom:1px solid #e9e8e3;
|
||||
color:#654322;
|
||||
}
|
||||
#rightnow {
|
||||
border:1px solid #e9e8e3;
|
||||
}
|
||||
#rightnow .reallynow {
|
||||
background:#f7f6f1;
|
||||
color:#654322;
|
||||
}
|
||||
#rightnow h3{
|
||||
background:#f7f6f1;
|
||||
border-bottom:1px solid #e9e8e3;
|
||||
}
|
122
admin/templates/stylish/css/theme4.css
Normal file
@ -0,0 +1,122 @@
|
||||
body{
|
||||
background:#d9eaed url(../img/bg_mix.jpg) repeat-x top;
|
||||
color: #202020;
|
||||
}
|
||||
a, a:visited{
|
||||
color:#294145;
|
||||
text-decoration:underline;
|
||||
}
|
||||
input{
|
||||
border:1px solid #c3d7db;
|
||||
}
|
||||
select{
|
||||
border:1px solid #c3d7db;
|
||||
}
|
||||
#header h2{
|
||||
color:#FFF;
|
||||
}
|
||||
#content{
|
||||
background:#FFF;
|
||||
}
|
||||
#sidebar{
|
||||
background:#FFF;
|
||||
}
|
||||
#sidebar h3{
|
||||
background:#d9eaed;
|
||||
border-bottom:1px solid #c3d7db;
|
||||
}
|
||||
#topmenu a,#topmenu a:visited{
|
||||
color:#FFF;
|
||||
background:#5d99a3;
|
||||
}
|
||||
#topmenu a:hover{
|
||||
color: #294145;
|
||||
}
|
||||
#topmenu .current a, #topmenu .current a:hover, #topmenu .current a:visited{
|
||||
color:#294145;
|
||||
background: #FFF url(../img/bg_menu_mix.jpg) repeat-x top;
|
||||
border-left: #FFF 1px solid;
|
||||
border-right: #FFF 1px solid;
|
||||
}
|
||||
#top-panel{
|
||||
background:#FFF;
|
||||
}
|
||||
table{
|
||||
background:none;
|
||||
}
|
||||
td, th{
|
||||
border:1px solid #c3d7db;
|
||||
}
|
||||
thead{
|
||||
background:#d9eaed;
|
||||
}
|
||||
#styleswitcher{
|
||||
background:#FFFFFF;
|
||||
}
|
||||
#footer{
|
||||
background:#FFF;
|
||||
}
|
||||
#box{
|
||||
border:1px solid #c3d7db;
|
||||
}
|
||||
#box h3{
|
||||
background:#d9eaed;
|
||||
border-bottom:1px solid #c3d7db;
|
||||
color:#294145;
|
||||
}
|
||||
/***************
|
||||
Forms
|
||||
***************/
|
||||
form#form fieldset {
|
||||
border:1px solid #c3d7db;
|
||||
}
|
||||
form#form legend {
|
||||
border:1px solid #c3d7db;
|
||||
background:#fff url(../img/form_mix.gif) repeat-x center left;
|
||||
color:#294145;
|
||||
}
|
||||
form#form input {
|
||||
border:1px solid #c3d7db;
|
||||
background:#fff url(../img/form_mix.gif) repeat-x top left;
|
||||
}
|
||||
form#form textarea {
|
||||
border:1px solid #c3d7db;
|
||||
background:#fff url(../img/form_mix.gif) repeat-x bottom left;
|
||||
}
|
||||
form#form option {
|
||||
background:#FFF;
|
||||
}
|
||||
form#form optgroup {
|
||||
background:#c3d7db;
|
||||
}
|
||||
form#form optgroup option {
|
||||
|
||||
}
|
||||
form#form #button1, form#form #button2 {
|
||||
color:#294145;
|
||||
}
|
||||
form#form #button1:hover, form#form #button2:hover {
|
||||
color:#000;
|
||||
}
|
||||
/***************
|
||||
Home
|
||||
***************/
|
||||
#infobox{
|
||||
border:1px solid #c3d7db;
|
||||
}
|
||||
#infobox h3{
|
||||
background:#d9eaed;
|
||||
border-bottom:1px solid #c3d7db;
|
||||
color:#294145;
|
||||
}
|
||||
#rightnow {
|
||||
border:1px solid #c3d7db;
|
||||
}
|
||||
#rightnow .reallynow {
|
||||
background:#d9eaed;
|
||||
color:#294145;
|
||||
}
|
||||
#rightnow h3{
|
||||
background:#d9eaed;
|
||||
border-bottom:1px solid #c3d7db;
|
||||
}
|
BIN
admin/templates/stylish/img/bg.jpg
Normal file
After Width: | Height: | Size: 372 B |
BIN
admin/templates/stylish/img/bg_blue.jpg
Normal file
After Width: | Height: | Size: 359 B |
BIN
admin/templates/stylish/img/bg_brown.jpg
Normal file
After Width: | Height: | Size: 355 B |
BIN
admin/templates/stylish/img/bg_light_green.jpg
Normal file
After Width: | Height: | Size: 356 B |
BIN
admin/templates/stylish/img/bg_menu_blue.jpg
Normal file
After Width: | Height: | Size: 372 B |
BIN
admin/templates/stylish/img/bg_menu_green.jpg
Normal file
After Width: | Height: | Size: 383 B |
BIN
admin/templates/stylish/img/bg_menu_mix.jpg
Normal file
After Width: | Height: | Size: 379 B |
BIN
admin/templates/stylish/img/bg_menu_red.jpg
Normal file
After Width: | Height: | Size: 367 B |
BIN
admin/templates/stylish/img/bg_mix.jpg
Normal file
After Width: | Height: | Size: 353 B |
BIN
admin/templates/stylish/img/form_blue.gif
Normal file
After Width: | Height: | Size: 272 B |
BIN
admin/templates/stylish/img/form_brown.gif
Normal file
After Width: | Height: | Size: 273 B |
BIN
admin/templates/stylish/img/form_green.gif
Normal file
After Width: | Height: | Size: 273 B |
BIN
admin/templates/stylish/img/form_mix.gif
Normal file
After Width: | Height: | Size: 273 B |
BIN
admin/templates/stylish/img/form_red.gif
Normal file
After Width: | Height: | Size: 166 B |
BIN
admin/templates/stylish/img/graph.jpg
Normal file
After Width: | Height: | Size: 40 KiB |
BIN
admin/templates/stylish/img/graph2.jpg
Normal file
After Width: | Height: | Size: 55 KiB |
BIN
admin/templates/stylish/img/icons/add.png
Normal file
After Width: | Height: | Size: 733 B |
BIN
admin/templates/stylish/img/icons/application_add.png
Normal file
After Width: | Height: | Size: 619 B |
BIN
admin/templates/stylish/img/icons/arrow_down.png
Normal file
After Width: | Height: | Size: 379 B |
BIN
admin/templates/stylish/img/icons/arrow_down_mini.gif
Normal file
After Width: | Height: | Size: 131 B |
BIN
admin/templates/stylish/img/icons/arrow_left.gif
Normal file
After Width: | Height: | Size: 131 B |
BIN
admin/templates/stylish/img/icons/arrow_right.gif
Normal file
After Width: | Height: | Size: 130 B |
BIN
admin/templates/stylish/img/icons/brick.png
Normal file
After Width: | Height: | Size: 452 B |
BIN
admin/templates/stylish/img/icons/brick_edit.png
Normal file
After Width: | Height: | Size: 775 B |
BIN
admin/templates/stylish/img/icons/bricks.png
Normal file
After Width: | Height: | Size: 825 B |
BIN
admin/templates/stylish/img/icons/bricks_gear.png
Normal file
After Width: | Height: | Size: 876 B |
BIN
admin/templates/stylish/img/icons/car.png
Normal file
After Width: | Height: | Size: 610 B |
BIN
admin/templates/stylish/img/icons/cart.png
Normal file
After Width: | Height: | Size: 421 B |
BIN
admin/templates/stylish/img/icons/cart_add.png
Normal file
After Width: | Height: | Size: 711 B |
BIN
admin/templates/stylish/img/icons/cog.png
Normal file
After Width: | Height: | Size: 512 B |
BIN
admin/templates/stylish/img/icons/coins.png
Normal file
After Width: | Height: | Size: 732 B |
BIN
admin/templates/stylish/img/icons/color_swatch.png
Normal file
After Width: | Height: | Size: 209 B |
BIN
admin/templates/stylish/img/icons/expand.jpg
Normal file
After Width: | Height: | Size: 773 B |
BIN
admin/templates/stylish/img/icons/feed.png
Normal file
After Width: | Height: | Size: 691 B |
BIN
admin/templates/stylish/img/icons/folder.png
Normal file
After Width: | Height: | Size: 537 B |
BIN
admin/templates/stylish/img/icons/folder_page.png
Normal file
After Width: | Height: | Size: 688 B |
BIN
admin/templates/stylish/img/icons/folder_page_add.png
Normal file
After Width: | Height: | Size: 773 B |
BIN
admin/templates/stylish/img/icons/folder_table.png
Normal file
After Width: | Height: | Size: 675 B |
BIN
admin/templates/stylish/img/icons/group.png
Normal file
After Width: | Height: | Size: 753 B |
BIN
admin/templates/stylish/img/icons/house.png
Normal file
After Width: | Height: | Size: 806 B |
BIN
admin/templates/stylish/img/icons/magnifier.png
Normal file
After Width: | Height: | Size: 615 B |
BIN
admin/templates/stylish/img/icons/page_add.png
Normal file
After Width: | Height: | Size: 739 B |
BIN
admin/templates/stylish/img/icons/page_gear.png
Normal file
After Width: | Height: | Size: 833 B |
BIN
admin/templates/stylish/img/icons/page_white_delete.png
Normal file
After Width: | Height: | Size: 536 B |
BIN
admin/templates/stylish/img/icons/page_white_edit.png
Normal file
After Width: | Height: | Size: 618 B |
BIN
admin/templates/stylish/img/icons/page_white_link.png
Normal file
After Width: | Height: | Size: 614 B |
BIN
admin/templates/stylish/img/icons/page_white_text_width.png
Normal file
After Width: | Height: | Size: 315 B |
BIN
admin/templates/stylish/img/icons/report.png
Normal file
After Width: | Height: | Size: 649 B |
BIN
admin/templates/stylish/img/icons/report_link.png
Normal file
After Width: | Height: | Size: 754 B |
BIN
admin/templates/stylish/img/icons/rss.png
Normal file
After Width: | Height: | Size: 530 B |
BIN
admin/templates/stylish/img/icons/user.png
Normal file
After Width: | Height: | Size: 741 B |
BIN
admin/templates/stylish/img/icons/user_add.png
Normal file
After Width: | Height: | Size: 746 B |
BIN
admin/templates/stylish/img/icons/user_delete.png
Normal file
After Width: | Height: | Size: 767 B |
BIN
admin/templates/stylish/img/icons/user_edit.png
Normal file
After Width: | Height: | Size: 833 B |
BIN
admin/templates/stylish/img/icons/world.png
Normal file
After Width: | Height: | Size: 923 B |
BIN
admin/templates/stylish/psd/template.psd
Normal file
296
admin/templates/stylish/template.php
Normal file
@ -0,0 +1,296 @@
|
||||
<?php defined('MYAAC') or die('Direct access not allowed!'); ?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<?php echo template_header(true); ?>
|
||||
<title><?php echo $title . $config['title_separator'] . $config['lua']['serverName']; ?> - Powered by MyAAC</title>
|
||||
<link rel="stylesheet" type="text/css" href="<?php echo $template_path; ?>css/theme2.css" />
|
||||
<link rel="stylesheet" type="text/css" href="<?php echo $template_path; ?>css/style.css" />
|
||||
<script>
|
||||
var StyleFile = "theme" + document.cookie.charAt(6) + ".css";
|
||||
document.writeln('<link rel="stylesheet" type="text/css" href="<?php echo $template_path; ?>css/' + StyleFile + '">');
|
||||
</script>
|
||||
<!--[if IE]>
|
||||
<link rel="stylesheet" type="text/css" href="css/ie-sucks.css" />
|
||||
<![endif]-->
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="container">
|
||||
<div id="header">
|
||||
<?php if($logged): ?>
|
||||
<div id="status">
|
||||
<?php if($status['online']): ?>
|
||||
<p class="success" style="width: 120px; text-align: center;">Status: Online<br/>
|
||||
<?php echo $status['uptimeReadable'] . ', ' . $status['players'] . '/' . $status['playersMax']; ?><br/>
|
||||
<?php echo $config['lua']['ip'] . ' : ' . $config['lua']['loginPort']; ?>
|
||||
</p>
|
||||
<?php else: ?>
|
||||
<p class="error" style="width: 120px; text-align: center;">Status: Offline</p>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<div id="version">Version: <?php echo MYAAC_VERSION; ?> (<a id="update" href="#">Check for updates</a>)<br/>
|
||||
<a href="http://<?php echo $_SERVER['HTTP_HOST']; ?>" target="_blank">Preview</a> <span class="separator">|</span> <a href="?action=logout">Logout<img src="images/logout.png" alt="" title="Logout" /></a>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<h2><?php echo $config['lua']['serverName']; ?> - Admin Panel</h2>
|
||||
<div id="topmenu">
|
||||
<ul>
|
||||
<li class="current"><a href="index.html">Dashboard</a></li>
|
||||
<li><a href="#">Orders</a></li>
|
||||
<li><a href="users.html">Users</a></li>
|
||||
<li><a href="#">Manage</a></li>
|
||||
<li><a href="#">CMS</a></li>
|
||||
<li><a href="#">Statistics</a></li>
|
||||
<li><a href="#">Settings</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div id="top-panel">
|
||||
<div id="panel">
|
||||
<ul>
|
||||
<li><a href="#" class="report">Sales Report</a></li>
|
||||
<li><a href="#" class="report_seo">SEO Report</a></li>
|
||||
<li><a href="#" class="search">Search</a></li>
|
||||
<li><a href="#" class="feed">RSS Feed</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div id="wrapper">
|
||||
<div id="content">
|
||||
<div id="rightnow">
|
||||
<h3 class="reallynow">
|
||||
<span>Right Now</span>
|
||||
<a href="#" class="add">Add New Product</a>
|
||||
<a href="#" class="app_add">Some Action</a>
|
||||
<br />
|
||||
</h3>
|
||||
<p class="youhave">You have <a href="#">19 new orders</a>, <a href="#">12 new users</a> and <a href="#">5 new reviews</a>, today you made <a href="#">$1523.63 in sales</a> and a total of <strong>$328.24 profit </strong>
|
||||
</p>
|
||||
</div>
|
||||
<div id="infowrap">
|
||||
<div id="infobox">
|
||||
<h3>Sales for July</h3>
|
||||
<p><img src="img/graph.jpg" width="360" height="266" /></p>
|
||||
</div>
|
||||
<div id="infobox" class="margin-left">
|
||||
<h3>Traffic for July</h3>
|
||||
<p><img src="img/graph2.jpg" alt="a" width="359" height="266" /></p>
|
||||
</div>
|
||||
<div id="infobox">
|
||||
<h3>Last 5 Orders</h3>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Customer</th>
|
||||
<th>Items</th>
|
||||
<th>Grand Total</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><a href="#">Jennifer Kyrnin</a></td>
|
||||
<td>1</td>
|
||||
<td>14.95 €</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Mark Kyrnin</a></td>
|
||||
<td>2</td>
|
||||
<td>34.27 €</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Virgílio Cezar</a></td>
|
||||
<td>2</td>
|
||||
<td>61.39 €</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Todd Simonides</a></td>
|
||||
<td>5</td>
|
||||
<td>1472.56 €</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Carol Elihu</a></td>
|
||||
<td>1</td>
|
||||
<td>9.95 €</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div id="infobox" class="margin-left">
|
||||
<h3>Bestsellers</h3>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Product Name</th>
|
||||
<th>Price</th>
|
||||
<th>Orders</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><a href="#">Apple iPhone 3G 8GB</a></td>
|
||||
<td>199.00 €</td>
|
||||
<td>24</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Fuji FinePix S5800</a></td>
|
||||
<td>365.24 €</td>
|
||||
<td>19</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Canon PIXMA MP140</a></td>
|
||||
<td>59.50 €</td>
|
||||
<td>12</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Apple iPhone 3G 16GB</a></td>
|
||||
<td>199.00 €</td>
|
||||
<td>10</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Prenosnik HP 530 1,6GHz</a></td>
|
||||
<td>499.00 €</td>
|
||||
<td>6</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div id="infobox">
|
||||
<h3>New Customers</h3>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Customer</th>
|
||||
<th>Orders</th>
|
||||
<th>Average</th>
|
||||
<th>Total</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><a href="#">Jennifer Kyrnin</a></td>
|
||||
<td>1</td>
|
||||
<td>5.6€</td>
|
||||
<td>14.95 €</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Mark Kyrnin</a></td>
|
||||
<td>2</td>
|
||||
<td>14.97€</td>
|
||||
<td>34.27 €</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Virgílio Cezar</a></td>
|
||||
<td>2</td>
|
||||
<td>15.31€</td>
|
||||
<td>61.39 €</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Todd Simonides</a></td>
|
||||
<td>5</td>
|
||||
<td>502.61€</td>
|
||||
<td>1472.56 €</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Carol Elihu</a></td>
|
||||
<td>1</td>
|
||||
<td>5.1€</td>
|
||||
<td>9.95 €</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div id="infobox" class="margin-left">
|
||||
<h3>Last 5 Reviews</h3>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Reviewer</th>
|
||||
<th>Product</th>
|
||||
<th>Action</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><a href="#">Jennifer Kyrnin</a></td>
|
||||
<td><a href="#">Apple iPhone 3G 8GB</a></td>
|
||||
<td><a href="#"><img src="img/icons/page_white_link.png" /></a><a href="#"><img src="img/icons/page_white_edit.png" /></a><a href="#"><img src="img/icons/page_white_delete.png" /></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Mark Kyrnin</a></td>
|
||||
<td><a href="#">Prenosnik HP 530 1,6GHz</a></td>
|
||||
<td><a href="#"><img src="img/icons/page_white_link.png" /></a><a href="#"><img src="img/icons/page_white_edit.png" /></a><a href="#"><img src="img/icons/page_white_delete.png" /></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Virgílio Cezar</a></td>
|
||||
<td><a href="#">Fuji FinePix S5800</a></td>
|
||||
<td><a href="#"><img src="img/icons/page_white_link.png" /></a><a href="#"><img src="img/icons/page_white_edit.png" /></a><a href="#"><img src="img/icons/page_white_delete.png" /></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Todd Simonides</a></td>
|
||||
<td><a href="#">Canon PIXMA MP140</a></td>
|
||||
<td><a href="#"><img src="img/icons/page_white_link.png" /></a><a href="#"><img src="img/icons/page_white_edit.png" /></a><a href="#"><img src="img/icons/page_white_delete.png" /></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">Carol Elihu</a></td>
|
||||
<td><a href="#">Prenosnik HP 530 1,6GHz</a></td>
|
||||
<td><a href="#"><img src="img/icons/page_white_link.png" /></a><a href="#"><img src="img/icons/page_white_edit.png" /></a><a href="#"><img src="img/icons/page_white_delete.png" /></a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="sidebar">
|
||||
<ul>
|
||||
<li><h3><a href="#" class="house">Dashboard</a></h3>
|
||||
<ul>
|
||||
<li><a href="#" class="report">Sales Report</a></li>
|
||||
<li><a href="#" class="report_seo">SEO Report</a></li>
|
||||
<li><a href="#" class="search">Search</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><h3><a href="#" class="folder_table">Orders</a></h3>
|
||||
<ul>
|
||||
<li><a href="#" class="addorder">New order</a></li>
|
||||
<li><a href="#" class="shipping">Shipments</a></li>
|
||||
<li><a href="#" class="invoices">Invoices</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><h3><a href="#" class="manage">Manage</a></h3>
|
||||
<ul>
|
||||
<li><a href="#" class="manage_page">Pages</a></li>
|
||||
<li><a href="#" class="cart">Products</a></li>
|
||||
<li><a href="#" class="folder">Product categories</a></li>
|
||||
<li><a href="#" class="promotions">Promotions</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><h3><a href="#" class="user">Players</a></h3>
|
||||
<ul>
|
||||
<li><a href="#" class="useradd">Add user</a></li>
|
||||
<li><a href="#" class="group">Groups</a></li>
|
||||
<li><a href="#" class="search">Find player</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<div id="credits">
|
||||
Powered by <a href="http://my-aac.org" target="_blank">MyAAC</a>, template by <a href="http://www.bloganje.com">Bloganje</a>
|
||||
</div>
|
||||
<div id="styleswitcher">
|
||||
<ul>
|
||||
<li><a href="javascript: document.cookie='theme='; window.location.reload();" title="Default" id="defswitch">d</a></li>
|
||||
<li><a href="javascript: document.cookie='theme=1'; window.location.reload();" title="Blue" id="blueswitch">b</a></li>
|
||||
<li><a href="javascript: document.cookie='theme=2'; window.location.reload();" title="Green" id="greenswitch">g</a></li>
|
||||
<li><a href="javascript: document.cookie='theme=3'; window.location.reload();" title="Brown" id="brownswitch">b</a></li>
|
||||
<li><a href="javascript: document.cookie='theme=4'; window.location.reload();" title="Mix" id="mixswitch">m</a></li>
|
||||
<li><a href="javascript: document.cookie='theme=5'; window.location.reload();" title="Mix" id="defswitch">m</a></li>
|
||||
</ul>
|
||||
</div><br />
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
309
admin/templates/stylish/users.html
Normal file
@ -0,0 +1,309 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>Users - Admin Template</title>
|
||||
<link rel="stylesheet" type="text/css" href="css/theme.css" />
|
||||
<link rel="stylesheet" type="text/css" href="css/style.css" />
|
||||
<script>
|
||||
var StyleFile = "theme" + document.cookie.charAt(6) + ".css";
|
||||
document.writeln('<link rel="stylesheet" type="text/css" href="css/' + StyleFile + '">');
|
||||
</script>
|
||||
<!--[if IE]>
|
||||
<link rel="stylesheet" type="text/css" href="css/ie-sucks.css" />
|
||||
<![endif]-->
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="container">
|
||||
<div id="header">
|
||||
<h2>My eCommerce Admin area</h2>
|
||||
<div id="topmenu">
|
||||
<ul>
|
||||
<li><a href="index.html">Dashboard</a></li>
|
||||
<li><a href="#">Orders</a></li>
|
||||
<li class="current"><a href="#">Users</a></li>
|
||||
<li><a href="#">Manage</a></li>
|
||||
<li><a href="#">CMS</a></li>
|
||||
<li><a href="#">Statistics</a></li>
|
||||
<li><a href="#">Settings</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div id="top-panel">
|
||||
<div id="panel">
|
||||
<ul>
|
||||
<li><a href="#adduser" class="useradd">Add user</a></li>
|
||||
<li><a href="#" class="group">User groups</a></li>
|
||||
<li><a href="#" class="search">Find user</a></li>
|
||||
<li><a href="#" class="online">Users online</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div id="wrapper">
|
||||
<div id="content">
|
||||
<div id="box">
|
||||
<h3>Users</h3>
|
||||
<table width="100%">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="40px"><a href="#">ID<img src="img/icons/arrow_down_mini.gif" width="16" height="16" align="absmiddle" /></a></th>
|
||||
<th><a href="#">Full Name</a></th>
|
||||
<th><a href="#">Email</a></th>
|
||||
<th width="70px"><a href="#">Group</a></th>
|
||||
<th width="50px"><a href="#">ZIP</a></th>
|
||||
<th width="90px"><a href="#">Registered</a></th>
|
||||
<th width="60px"><a href="#">Action</a></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="a-center">232</td>
|
||||
<td><a href="#">Jennifer Hodes</a></td>
|
||||
<td>jennifer.hodes@gmail.com</td>
|
||||
<td>General</td>
|
||||
<td>1000</td>
|
||||
<td>July 2, 2008</td>
|
||||
<td><a href="#"><img src="img/icons/user.png" title="Show profile" width="16" height="16" /></a><a href="#"><img src="img/icons/user_edit.png" title="Edit user" width="16" height="16" /></a><a href="#"><img src="img/icons/user_delete.png" title="Delete user" width="16" height="16" /></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="a-center">231</td>
|
||||
<td><a href="#">Mark Kyrnin</a></td>
|
||||
<td>mark.kyrnin@hotmail.com</td>
|
||||
<td>Affiliate</td>
|
||||
<td>8310</td>
|
||||
<td>June 17, 2008</td>
|
||||
<td><a href="#"><img src="img/icons/user.png" title="Show profile" width="16" height="16" /></a><a href="#"><img src="img/icons/user_edit.png" title="Edit user" width="16" height="16" /></a><a href="#"><img src="img/icons/user_delete.png" title="Delete user" width="16" height="16" /></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="a-center">230</td>
|
||||
<td><a href="#">Virgílio Cezar</a></td>
|
||||
<td>virgilio@somecompany.cz</td>
|
||||
<td>General</td>
|
||||
<td>6200</td>
|
||||
<td>June 31, 2008</td>
|
||||
<td><a href="#"><img src="img/icons/user.png" title="Show profile" width="16" height="16" /></a><a href="#"><img src="img/icons/user_edit.png" title="Edit user" width="16" height="16" /></a><a href="#"><img src="img/icons/user_delete.png" title="Delete user" width="16" height="16" /></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="a-center">229</td>
|
||||
<td><a href="#">Todd Simonides</a></td>
|
||||
<td>todd.simonides@gmail.com</td>
|
||||
<td>Wholesale</td>
|
||||
<td>2010</td>
|
||||
<td>June 5, 2008</td>
|
||||
<td><a href="#"><img src="img/icons/user.png" title="Show profile" width="16" height="16" /></a><a href="#"><img src="img/icons/user_edit.png" title="Edit user" width="16" height="16" /></a><a href="#"><img src="img/icons/user_delete.png" title="Delete user" width="16" height="16" /></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="a-center">228</td>
|
||||
<td><a href="#">Carol Elihu</a></td>
|
||||
<td>carol@herbusiness.com</td>
|
||||
<td>General</td>
|
||||
<td>3120</td>
|
||||
<td>May 23, 2008</td>
|
||||
<td><a href="#"><img src="img/icons/user.png" title="Show profile" width="16" height="16" /></a><a href="#"><img src="img/icons/user_edit.png" title="Edit user" width="16" height="16" /></a><a href="#"><img src="img/icons/user_delete.png" title="Delete user" width="16" height="16" /></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="a-center">232</td>
|
||||
<td><a href="#">Jennifer Hodes</a></td>
|
||||
<td>jennifer.hodes@gmail.com</td>
|
||||
<td>General</td>
|
||||
<td>1000</td>
|
||||
<td>July 2, 2008</td>
|
||||
<td><a href="#"><img src="img/icons/user.png" title="Show profile" width="16" height="16" /></a><a href="#"><img src="img/icons/user_edit.png" title="Edit user" width="16" height="16" /></a><a href="#"><img src="img/icons/user_delete.png" title="Delete user" width="16" height="16" /></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="a-center">231</td>
|
||||
<td><a href="#">Mark Kyrnin</a></td>
|
||||
<td>mark.kyrnin@hotmail.com</td>
|
||||
<td>Affiliate</td>
|
||||
<td>8310</td>
|
||||
<td>June 17, 2008</td>
|
||||
<td><a href="#"><img src="img/icons/user.png" title="Show profile" width="16" height="16" /></a><a href="#"><img src="img/icons/user_edit.png" title="Edit user" width="16" height="16" /></a><a href="#"><img src="img/icons/user_delete.png" title="Delete user" width="16" height="16" /></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="a-center">230</td>
|
||||
<td><a href="#">Virgílio Cezar</a></td>
|
||||
<td>virgilio@somecompany.cz</td>
|
||||
<td>General</td>
|
||||
<td>6200</td>
|
||||
<td>June 31, 2008</td>
|
||||
<td><a href="#"><img src="img/icons/user.png" title="Show profile" width="16" height="16" /></a><a href="#"><img src="img/icons/user_edit.png" title="Edit user" width="16" height="16" /></a><a href="#"><img src="img/icons/user_delete.png" title="Delete user" width="16" height="16" /></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="a-center">229</td>
|
||||
<td><a href="#">Todd Simonides</a></td>
|
||||
<td>todd.simonides@gmail.com</td>
|
||||
<td>Wholesale</td>
|
||||
<td>2010</td>
|
||||
<td>June 5, 2008</td>
|
||||
<td><a href="#"><img src="img/icons/user.png" title="Show profile" width="16" height="16" /></a><a href="#"><img src="img/icons/user_edit.png" title="Edit user" width="16" height="16" /></a><a href="#"><img src="img/icons/user_delete.png" title="Delete user" width="16" height="16" /></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="a-center">228</td>
|
||||
<td><a href="#">Carol Elihu</a></td>
|
||||
<td>carol@herbusiness.com</td>
|
||||
<td>General</td>
|
||||
<td>3120</td>
|
||||
<td>May 23, 2008</td>
|
||||
<td><a href="#"><img src="img/icons/user.png" title="Show profile" width="16" height="16" /></a><a href="#"><img src="img/icons/user_edit.png" title="Edit user" width="16" height="16" /></a><a href="#"><img src="img/icons/user_delete.png" title="Delete user" width="16" height="16" /></a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div id="pager">
|
||||
Page <a href="#"><img src="img/icons/arrow_left.gif" width="16" height="16" /></a>
|
||||
<input size="1" value="1" type="text" name="page" id="page" />
|
||||
<a href="#"><img src="img/icons/arrow_right.gif" width="16" height="16" /></a>of 42
|
||||
pages | View <select name="view">
|
||||
<option>10</option>
|
||||
<option>20</option>
|
||||
<option>50</option>
|
||||
<option>100</option>
|
||||
</select>
|
||||
per page | Total <strong>420</strong> records found
|
||||
</div>
|
||||
</div>
|
||||
<br />
|
||||
<div id="box">
|
||||
<h3 id="adduser">Add user</h3>
|
||||
<form id="form" action="..." method="post">
|
||||
<fieldset id="personal">
|
||||
<legend>PERSONAL INFORMATION</legend>
|
||||
<label for="lastname">Last name : </label>
|
||||
<input name="lastname" id="lastname" type="text" tabindex="1" />
|
||||
<br />
|
||||
<label for="firstname">First name : </label>
|
||||
<input name="firstname" id="firstname" type="text"
|
||||
tabindex="2" />
|
||||
<br />
|
||||
<label for="email">Email : </label>
|
||||
<input name="email" id="email" type="text"
|
||||
tabindex="2" />
|
||||
<br />
|
||||
<p>Send auto generated password
|
||||
<input name="generatepass" id="yes" type="checkbox"
|
||||
value="yes" tabindex="35" /></p>
|
||||
<label for="pass">Password : </label>
|
||||
<input name="pass" id="pass" type="password"
|
||||
tabindex="2" />
|
||||
<br />
|
||||
<label for="pass-2">Password : </label>
|
||||
<input name="pass-2" id="pass-2" type="password"
|
||||
tabindex="2" />
|
||||
<br />
|
||||
</fieldset>
|
||||
<fieldset id="address">
|
||||
<legend>Address</legend>
|
||||
<label for="street">Street address : </label>
|
||||
<input name="street" id="street" type="text"
|
||||
tabindex="1" />
|
||||
<br />
|
||||
<label for="city">City : </label>
|
||||
<input name="city" id="city" type="text"
|
||||
tabindex="2" />
|
||||
<br />
|
||||
<label for="country">Country : </label>
|
||||
<input name="country" id="country" type="text"
|
||||
tabindex="1" />
|
||||
<br />
|
||||
<label for="state">State/Province : </label>
|
||||
<input name="state" id="state" type="text"
|
||||
tabindex="2" />
|
||||
<br />
|
||||
<label for="zip">Zip/Postal Code : </label>
|
||||
<input name="zip" id="zip" type="text"
|
||||
tabindex="2" />
|
||||
<br />
|
||||
<label for="tel">Telephone : </label>
|
||||
<input name="tel" id="tel" type="text"
|
||||
tabindex="2" />
|
||||
</fieldset>
|
||||
<fieldset id="opt">
|
||||
<legend>OPTIONS</legend>
|
||||
<label for="choice">Group : </label>
|
||||
<select name="choice">
|
||||
<option selected="selected" label="none" value="none">
|
||||
General
|
||||
</option>
|
||||
<optgroup label="Group 1">
|
||||
<option label="cg1a" value="val_1a">Selection group 1a
|
||||
</option>
|
||||
<option label="cg1b" value="val_1b">Selection group 1b
|
||||
</option>
|
||||
<option label="cg1c" value="val_1c">Selection group 1c
|
||||
</option>
|
||||
</optgroup>
|
||||
<optgroup label="Group 2">
|
||||
<option label="cg2a" value="val_2a">Selection group 2a
|
||||
</option>
|
||||
<option label="cg2b" value="val_2a">Selection group 2b
|
||||
</option>
|
||||
</optgroup>
|
||||
<optgroup label="Group 3">
|
||||
<option label="cg3a" value="val_3a">Selection group 3a
|
||||
</option>
|
||||
<option label="cg3a" value="val_3a">Selection group 3b
|
||||
</option>
|
||||
</optgroup>
|
||||
</select>
|
||||
</fieldset>
|
||||
<div align="center">
|
||||
<input id="button1" type="submit" value="Send" />
|
||||
<input id="button2" type="reset" />
|
||||
</div>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div id="sidebar">
|
||||
<ul>
|
||||
<li><h3><a href="#" class="house">Dashboard</a></h3>
|
||||
<ul>
|
||||
<li><a href="#" class="report">Sales Report</a></li>
|
||||
<li><a href="#" class="report_seo">SEO Report</a></li>
|
||||
<li><a href="#" class="search">Search</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><h3><a href="#" class="folder_table">Orders</a></h3>
|
||||
<ul>
|
||||
<li><a href="#" class="addorder">New order</a></li>
|
||||
<li><a href="#" class="shipping">Shipments</a></li>
|
||||
<li><a href="#" class="invoices">Invoices</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><h3><a href="#" class="manage">Manage</a></h3>
|
||||
<ul>
|
||||
<li><a href="#" class="manage_page">Pages</a></li>
|
||||
<li><a href="#" class="cart">Products</a></li>
|
||||
<li><a href="#" class="folder">Product categories</a></li>
|
||||
<li><a href="#" class="promotions">Promotions</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><h3><a href="#" class="user">Users</a></h3>
|
||||
<ul>
|
||||
<li><a href="#" class="useradd">Add user</a></li>
|
||||
<li><a href="#" class="group">User groups</a></li>
|
||||
<li><a href="#" class="search">Find user</a></li>
|
||||
<li><a href="#" class="online">Users online</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<div id="credits">
|
||||
Template by <a href="http://www.bloganje.com">Bloganje</a>
|
||||
</div>
|
||||
<div id="styleswitcher">
|
||||
<ul>
|
||||
<li><a href="javascript: document.cookie='theme='; window.location.reload();" title="Default" id="defswitch">d</a></li>
|
||||
<li><a href="javascript: document.cookie='theme=1'; window.location.reload();" title="Blue" id="blueswitch">b</a></li>
|
||||
<li><a href="javascript: document.cookie='theme=2'; window.location.reload();" title="Green" id="greenswitch">g</a></li>
|
||||
<li><a href="javascript: document.cookie='theme=3'; window.location.reload();" title="Brown" id="brownswitch">b</a></li>
|
||||
<li><a href="javascript: document.cookie='theme=4'; window.location.reload();" title="Mix" id="mixswitch">m</a></li>
|
||||
</ul>
|
||||
</div><br />
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
14
admin/tools/phpinfo.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
require('../../common.php');
|
||||
require(SYSTEM . 'functions.php');
|
||||
require(SYSTEM . 'init.php');
|
||||
require(SYSTEM . 'login.php');
|
||||
|
||||
if(!admin())
|
||||
die('Access denied.');
|
||||
|
||||
if(!function_exists('phpinfo'))
|
||||
die('phpinfo() disabled on this web server.');
|
||||
|
||||
phpinfo();
|
||||
?>
|
21
admin/tools/status.php
Normal file
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
require('../../common.php');
|
||||
require(SYSTEM . 'init.php');
|
||||
require(SYSTEM . 'functions.php');
|
||||
require(SYSTEM . 'status.php');
|
||||
require(SYSTEM . 'login.php');
|
||||
|
||||
if(!admin())
|
||||
die('Access denied.');
|
||||
|
||||
if(!$status['online'])
|
||||
die('Offline');
|
||||
?>
|
||||
<b>Server</b>: <?php echo $status['server'] . ' ' . $status['serverVersion']; ?><br/>
|
||||
<b>Version</b>: <?php echo $status['clientVersion']; ?><br/><br/>
|
||||
|
||||
<b>Monsters</b>: <?php echo $status['monsters']; ?><br/>
|
||||
<b>Map</b>: <?php echo $status['mapName']; ?>, <b>author</b>: <?php echo $status['mapAuthor']; ?>, <b>size</b>: <?php echo $status['mapWidth'] . ' x ' . $status['mapHeight']; ?><br/>
|
||||
<b>MOTD</b>: <?php echo $status['motd']; ?><br/><br/>
|
||||
|
||||
<b>Last check</b>: <?php echo date("H:i:s", $status['lastCheck']); ?>
|
86
common.php
Normal file
@ -0,0 +1,86 @@
|
||||
<?php
|
||||
/**
|
||||
* Project: MyAAC
|
||||
* Automatic Account Creator for Open Tibia Servers
|
||||
* File: common.php
|
||||
*
|
||||
* This is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This software 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
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* @package MyAAC
|
||||
* @author Slawkens <slawkens@gmail.com>
|
||||
* @copyright 2017 MyAAC
|
||||
* @version 0.0.1
|
||||
* @link http://my-aac.org
|
||||
*/
|
||||
session_start();
|
||||
|
||||
define('MYAAC', true);
|
||||
define('MYAAC_VERSION', '0.0.1');
|
||||
define('TABLE_PREFIX', 'myaac_');
|
||||
define('START_TIME', microtime(true));
|
||||
define('MYAAC_OS', (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') ? 'WINDOWS' : 'LINUX');
|
||||
|
||||
// account flags
|
||||
define('FLAG_ADMIN', 1);
|
||||
define('FLAG_SUPER_ADMIN', 2);
|
||||
define('FLAG_CONTENT_PAGES', 4);
|
||||
define('FLAG_CONTENT_MAILER', 8);
|
||||
define('FLAG_CONTENT_NEWS', 16);
|
||||
define('FLAG_CONTENT_FORUM', 32);
|
||||
define('FLAG_CONTENT_COMMANDS', 64);
|
||||
define('FLAG_CONTENT_SPELLS', 128);
|
||||
define('FLAG_CONTENT_MONSTERS', 256);
|
||||
|
||||
// directories
|
||||
define('BASE', dirname(__FILE__) . '/');
|
||||
define('ADMIN', BASE . 'admin/');
|
||||
define('SYSTEM', BASE . 'system/');
|
||||
define('CACHE', SYSTEM . 'cache/');
|
||||
define('LOCALE', SYSTEM . 'locale/');
|
||||
define('LIBS', SYSTEM . 'libs/');
|
||||
define('LOGS', SYSTEM . 'logs/');
|
||||
define('PLUGINS', BASE . 'plugins/');
|
||||
define('TEMPLATES', BASE . 'templates/');
|
||||
|
||||
// otserv versions
|
||||
define('OTSERV', 1);
|
||||
define('OTSERV_06', 2);
|
||||
define('OTSERV_FIRST', OTSERV);
|
||||
define('OTSERV_LAST', OTSERV_06);
|
||||
define('TFS_02', 3);
|
||||
define('TFS_03', 4);
|
||||
define('TFS_FIRST', TFS_02);
|
||||
define('TFS_LAST', TFS_03);
|
||||
|
||||
// basedir
|
||||
$basedir = '';
|
||||
$tmp = explode('/', $_SERVER['SCRIPT_NAME']);
|
||||
$size = sizeof($tmp) - 1;
|
||||
for($i = 1; $i < $size; $i++)
|
||||
$basedir .= '/' . $tmp[$i];
|
||||
|
||||
$basedir = str_replace('/admin', '', $basedir);
|
||||
$basedir = str_replace('/install', '', $basedir);
|
||||
define('BASE_DIR', $basedir);
|
||||
|
||||
if(isset($_SERVER['HTTPS'][0]) && $_SERVER['HTTPS'] == 'on')
|
||||
define('SERVER_URL', 'https://' . $_SERVER['HTTP_HOST']);
|
||||
else
|
||||
define('SERVER_URL', 'http://' . $_SERVER['HTTP_HOST']);
|
||||
|
||||
define('BASE_URL', SERVER_URL . BASE_DIR . '/');
|
||||
define('ADMIN_URL', SERVER_URL . BASE_DIR . '/admin/');
|
||||
//define('CURRENT_URL', BASE_URL . $_SERVER['REQUEST_URI']);
|
||||
?>
|
3
config.local.php
Normal file
@ -0,0 +1,3 @@
|
||||
<?php
|
||||
// place for your configuration directives, so you can later easily update myaac
|
||||
?>
|
225
config.php
Normal file
@ -0,0 +1,225 @@
|
||||
<?php
|
||||
/**
|
||||
* This is MyAAC's Main Configuration file
|
||||
*
|
||||
* All the default values are kept here, you should not modify it but use
|
||||
* a config.local.php file instead to override the settings from here.
|
||||
*
|
||||
* This is a piece of PHP code so PHP syntax applies!
|
||||
* For boolean values please use true/false.
|
||||
*
|
||||
* Minimally 'server_path' directive have to be filled, other options are optional.
|
||||
*
|
||||
* @package MyAAC
|
||||
* @author Slawkens <slawkens@gmail.com>
|
||||
* @copyright 2017 MyAAC
|
||||
* @version 0.0.1
|
||||
* @link http://my-aac.org
|
||||
*/
|
||||
|
||||
$config = array(
|
||||
// directories & files
|
||||
'server_path' => '', // path to the server directory (same directory where config file is located)
|
||||
|
||||
'template' => 'kathrine', // template used by website (kathrine, tibiacom)
|
||||
'template_allow_change' => true, // allow users to choose their own template while browsing website?
|
||||
|
||||
// what client version are you using on this OT?
|
||||
// used for the Downloads page and some templates aswell
|
||||
'client' => 1098, // 954 = client 9.54
|
||||
|
||||
'friendly_urls' => false, // mod_rewrite is required for this, it makes links looks more elegant to eye, and also are SEO friendly (example: http://my-aac.org/guilds/Testing instead of http://my-aac.org/?subtopic=guilds&name=Testing)
|
||||
'gzip_output' => false, // gzip page content before sending it to the browser, uses less bandwidth but more cpu cycles
|
||||
|
||||
// gesior backward support (templates & pages)
|
||||
// allows using gesior templates and pages with myaac
|
||||
'backward_support' => true,
|
||||
|
||||
// head options (html)
|
||||
'meta_description' => 'Tibia is a free massive multiplayer online role playing game (MMORPG).', // description of the site
|
||||
'meta_keywords' => 'free online game, free multiplayer game, ots, open tibia server', // keywords list separated by commas
|
||||
'title_separator' => ' - ',
|
||||
|
||||
// footer
|
||||
'footer' => ''/*'<br/>Your Server © 2016. All rights reserved.'*/,
|
||||
|
||||
// site closed
|
||||
'site_closed' => false,
|
||||
'site_closed_title' => 'Closed',
|
||||
'site_closed_message' => 'Server is under maintance, please visit later.<br/><br/>',
|
||||
|
||||
'debug_level' => 0, // 0 - disabled, 1 - show load time, 2 - show db query counter, 3 - both
|
||||
|
||||
'language' => 'en', // default language (currently only 'en' available)
|
||||
'language_allow_change' => false,
|
||||
|
||||
'visitors_counter' => true,
|
||||
'visitors_counter_ttl' => 10, // how long visitor will be marked as online (in minutes)
|
||||
'views_counter' => true,
|
||||
|
||||
// cache system. by default file cache is used
|
||||
'cache_engine' => 'auto', // apc, eaccelerator, xcache, file, auto, or blank to disable.
|
||||
'cache_prefix' => 'myaac_', // have to be unique if running more MyAAC instances on the same server, ignored when using file cache.
|
||||
|
||||
// database details (leave blank for auto detect from config.lua)
|
||||
'database_host' => '',
|
||||
'database_port' => '', // leave blank to default 3306
|
||||
'database_user' => '',
|
||||
'database_password' => '',
|
||||
'database_name' => '',
|
||||
|
||||
// multiworld system
|
||||
'multiworld' => false, // use multiworld system?
|
||||
'worlds' => array( // list of worlds
|
||||
//'1' => 'Your World Name',
|
||||
//'2' => 'Your Second World Name'
|
||||
),
|
||||
|
||||
// account
|
||||
'account_management' => true, // disable if you're using other method to manage users (fe. tfs account manager)
|
||||
'account_mail_verify' => false, // force users to confirm their email addresses when registering account
|
||||
'account_mail_unique' => true, // email addresses cannot be duplicated? (one account = one email)
|
||||
'account_premium_days' => 0, // default premium days on new account
|
||||
'account_premium_points' => 0, // default premium points on new account
|
||||
'account_welcome_mail' => true, // send welcome email when user registers
|
||||
'account_mail_change' => 2, // how many days user need to change email to account - block hackers
|
||||
'account_country' => true, // user will be able to set country of origin when registering account, this information will be viewable in others places aswell
|
||||
|
||||
// mail
|
||||
'mail_enabled' => false, // is aac maker configured to send e-mails?
|
||||
'mail_address' => 'no-reply@your-server.org', // server e-mail address (from:)
|
||||
'mail_admin' => 'your-address@your-server.org', // admin email address, where mails from contact form will be sent
|
||||
'mail_signature' => array( // signature that will be included at the end of every message sent using _mail function
|
||||
'plain' => "--\nMy Server,\nhttp://www.myserver.com",
|
||||
'html' => '<br/>My Server,\n<a href="http://www.myserver.com">myserver.com</a>'
|
||||
),
|
||||
'smtp_enabled' => false, // send by smtp or mail function (set false if use mail function)
|
||||
'smtp_host' => '', // mail host
|
||||
'smtp_port' => 25, // 25 (default) / 465 (ssl, e.g. gmail)
|
||||
'smtp_auth' => true, // need authorization?
|
||||
'smtp_user' => 'admin@example.org',
|
||||
'smtp_pass' => '',
|
||||
|
||||
// reCAPTCHA (prevent spam bots)
|
||||
'recaptcha_enabled' => false, // enable recaptcha verification code
|
||||
'recaptcha_site_key' => '', // get your own public and private keys at https://www.google.com/recaptcha
|
||||
'recaptcha_secret_key' => '',
|
||||
'recaptcha_theme' => 'light', // light, dark
|
||||
|
||||
//
|
||||
'generate_new_reckey' => true, // let player generate new recovery key, he will receive e-mail with new rec key (not display on page, hacker can't generate rec key)
|
||||
'generate_new_reckey_price' => 20, // price for new recovery key
|
||||
'send_mail_when_change_password' => true, // send e-mail with new password when change password to account
|
||||
'send_mail_when_generate_reckey' => true, // send e-mail with rec key (key is displayed on page anyway when generate)
|
||||
|
||||
// new character config
|
||||
'character_samples' => array( // vocations, format: ID_of_vocation => 'Name of Character to copy'
|
||||
//0 => 'Rook Sample',
|
||||
1 => 'Sorcerer Sample',
|
||||
2 => 'Druid Sample',
|
||||
3 => 'Paladin Sample',
|
||||
4 => 'Knight Sample'
|
||||
),
|
||||
|
||||
// town list used when creating character
|
||||
// won't be displayed if there is only one item (rookgaard for example)
|
||||
'character_towns' => array(1),
|
||||
|
||||
// list of towns
|
||||
'towns' => array(
|
||||
0 => 'No town',
|
||||
1 => 'Sample town'
|
||||
),
|
||||
|
||||
'characters_per_account' => 10, // max. number of characters per account
|
||||
|
||||
// guilds
|
||||
'guild_management' => true, // enable guild management system on the site?
|
||||
'guild_need_level' => 1, // min. level to form a guild
|
||||
'guild_need_premium' => true, // require premium account to form a guild?
|
||||
'guild_image_size_kb' => 80, // maximum size of the guild logo image in KB (kilobytes)
|
||||
'guild_description_chars_limit' => 1000, // limit of guild description
|
||||
'guild_description_lines_limit' => 6, // limit of lines, if description has more lines it will be showed as long text, without 'enters'
|
||||
'guild_motd_chars_limit' => 150, // limit of MOTD (message of the day) that is shown later in the game on the guild channel
|
||||
|
||||
'quests' => array(), // quests list (displayed in character view), name => storage
|
||||
|
||||
'signature_enabled' => true,
|
||||
'signature_type' => 'tibian', // signature engine to use: tibian, mango, gesior
|
||||
'signature_cache_time' => 5, // how long to store cached file (in minutes)
|
||||
|
||||
// online page
|
||||
'online_record' => true, // display players record?
|
||||
'online_vocations' => false, // display vocation statistics?
|
||||
'online_vocations_images' => false, // display vocation images?
|
||||
'online_skulls' => false, // display skull images
|
||||
'online_afk' => false,
|
||||
|
||||
// support list page
|
||||
'team_style' => 2, // 1/2 (1 - normal table, 2 - in boxes, grouped by group id)
|
||||
'team_display_status' => true,
|
||||
'team_display_lastlogin' => true,
|
||||
'team_display_world' => false,
|
||||
|
||||
// bans page
|
||||
'bans_limit' => 50,
|
||||
'bans_display_all' => true, // should all bans be displayed? (sorted page by page)
|
||||
|
||||
// highscores page
|
||||
'highscores_vocation_box' => true, // show 'Choose a vocation' box on the highscores (allowing peoples to sort highscores by vocation)?
|
||||
'highscores_vocation' => true, // show player vocation under his nickname?
|
||||
'highscores_frags' => false, // show 'Frags' tab (best fraggers on the server)? Only 0.3
|
||||
'highscores_country_box' => false, // doesnt work yet! (not implemented)
|
||||
'highscores_groups_hidden' => 4, // this group id and higher won't be shown on the highscores
|
||||
|
||||
// characters page
|
||||
'characters' => array( // what things to display on character view page (true/false in each option)
|
||||
'level' => true,
|
||||
'experience' => false,
|
||||
'magic_level' => false,
|
||||
'balance' => false,
|
||||
'marriage_info' => true, // only 0.3
|
||||
'creation_date' => true,
|
||||
'quests' => true,
|
||||
'skills' => true,
|
||||
'equipment' => true,
|
||||
'frags' => false
|
||||
),
|
||||
|
||||
// news page
|
||||
'news_limit' => 5, // limit of news on latest news page
|
||||
'news_ticker_limit' => 5, // limit of news in tickers (mini news) (0 to disable)
|
||||
'news_date_format' => 'j.n.Y', // check php manual date() function for more info about this
|
||||
'news_author' => true,
|
||||
|
||||
// gifts/shop system
|
||||
'gifts_system' => false,
|
||||
|
||||
// forum
|
||||
'forum' => 'site', // link to the server forum, set to "site" if you want to use build in forum system, otherwise leave empty if you aren't going to use any forum
|
||||
'forum_level_required' => 0, // level required to post, 0 to disable
|
||||
'forum_post_interval' => 30, // in seconds
|
||||
'forum_posts_per_page' => 20,
|
||||
'forum_threads_per_page' => 20,
|
||||
|
||||
// last kills
|
||||
'last_kills_limit' => 50, // max. number of deaths shown on the last kills page
|
||||
|
||||
// status, took automatically from config file if empty
|
||||
'status_ip' => '',
|
||||
'status_port' => '',
|
||||
|
||||
// other
|
||||
'email_lai_sec_interval' => 60, // time in seconds between e-mails to one account from lost account interface, block spam
|
||||
'google_analytics_id' => '', // e.g.: UA-XXXXXXX-X
|
||||
'experiencetable_columns' => 5, // how many columns to display in experience table page. * 100, 5 = 500 (will show up to 500 level)
|
||||
|
||||
'monsters' => array(),
|
||||
'npc' => array()
|
||||
);
|
||||
|
||||
// download link to client.
|
||||
$config['client_download'] = 'http://clients.halfaway.net/windows.php?tibia='. $config['client'] .'';
|
||||
$config['client_download_linux'] = 'http://clients.halfaway.net/linux.php?tibia='. $config['client'] .'';
|
||||
|
||||
?>
|
1
images/.htaccess
Normal file
@ -0,0 +1 @@
|
||||
Options -Indexes
|
BIN
images/addons/Female_Assassin_1.gif
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
images/addons/Female_Assassin_2.gif
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
images/addons/Female_Barbarian_1.gif
Normal file
After Width: | Height: | Size: 5.4 KiB |
BIN
images/addons/Female_Barbarian_2.gif
Normal file
After Width: | Height: | Size: 5.7 KiB |
BIN
images/addons/Female_Beggar_1.gif
Normal file
After Width: | Height: | Size: 5.4 KiB |
BIN
images/addons/Female_Beggar_2.gif
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
images/addons/Female_Brotherhood_1.gif
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
images/addons/Female_Brotherhood_2.gif
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
images/addons/Female_Citizen_1.gif
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
images/addons/Female_Citizen_2.gif
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
images/addons/Female_Demonhunter_1.gif
Normal file
After Width: | Height: | Size: 8.9 KiB |
BIN
images/addons/Female_Demonhunter_2.gif
Normal file
After Width: | Height: | Size: 8.6 KiB |
BIN
images/addons/Female_Druid_1.gif
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
images/addons/Female_Druid_2.gif
Normal file
After Width: | Height: | Size: 5.3 KiB |
BIN
images/addons/Female_Hunter_1.gif
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
images/addons/Female_Hunter_2.gif
Normal file
After Width: | Height: | Size: 5.4 KiB |