-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.php
executable file
·32 lines (25 loc) · 1.33 KB
/
main.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/**
** main.php
** @version 1.3.1
** @since 1.0
** @author en0ndev
*/
/*
This file is part of Custom Profile Avatar.
Custom Profile Avatar 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.
Custom Profile Avatar 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 Custom Profile Avatar. If not, see <https://www.gnu.org/licenses/>.
*/
defined('ABSPATH') || exit; // Exit if accessed directly
$template = "<div id='cpa__change__avatar' class='change__avatar'><h4 class='info__card'>Change your avatar</h4><div id='user__avatar' class='user__avatar'><input id='change' type='button'/><span></span>" . htmlspecialchars_decode(cpa__get__avatar__new("custom__avatar"));
$template .= "<input type='text' class='hidden' name='avatar__val' value='" . cpa__get__value("custom__avatar") . "' /></div></div>";
$page = new cpa__page__template;
$page->cpa__get__template(__('Manage Avatar', 'custom-profile-avatar'), $template, 1);