| 1 |
<?php |
| 2 |
|
| 3 |
|
| 4 |
// Shortcodes Settings |
| 5 |
|
| 6 |
add_action( 'ucd_settings_content', 'ucd_shortcodes_page' ); |
| 7 |
function ucd_shortcodes_page() { |
| 8 |
global $ucd_active_tab; |
| 9 |
if ( 'shortcodes' != $ucd_active_tab ) |
| 10 |
return; |
| 11 |
?> |
| 12 |
|
| 13 |
<h3><?php _e( 'Usable Shortcodes', 'ultimate-client-dash' ); ?></h3> |
| 14 |
|
| 15 |
<!-- Begin settings form --> |
| 16 |
<form action="options.php" method="post"> |
| 17 |
|
| 18 |
<!-- Dashboard Styling Option Section --> |
| 19 |
|
| 20 |
<div class="ucd-inner-wrapper settings-shortcodes"> |
| 21 |
<p class="ucd-settings-desc">Useful shortcodes you can use throughout your website to dynamically populate data. Example: Auto update copyright date in footer based on current year.</p> |
| 22 |
|
| 23 |
<div class="ucd-form-message"><?php settings_errors('ucd-notices'); ?></div> |
| 24 |
|
| 25 |
<table class="form-table"> |
| 26 |
<tbody> |
| 27 |
|
| 28 |
<tr class="ucd-title-holder"> |
| 29 |
<th><h2 class="ucd-inner-title"><?php _e( 'Site Information', 'ultimate-client-dash' ) ?></h2></th> |
| 30 |
</tr> |
| 31 |
|
| 32 |
<tr class="ucd-shortcode-tr ucd-pro-version"> |
| 33 |
<th> |
| 34 |
<input class="ucd-shortcode-holder" type="text" value="[site-title]" id="siteTitle" readonly="readonly"> |
| 35 |
<div class="ucd-shortcode-tooltip"> |
| 36 |
<button id="siteTitle" type="button" onclick="ucdCopyToClipboard('siteTitle')" onmouseout="ucdClipboardOut()"><span class="ucd-shortcode-tooltip-text" id="siteTitleTip">Copy to clipboard</span>Copy</button> |
| 37 |
</div> |
| 38 |
</th> |
| 39 |
<td><p>Shortcode to display the site title.</p></td> |
| 40 |
</tr> |
| 41 |
|
| 42 |
<tr class="ucd-shortcode-tr ucd-pro-version"> |
| 43 |
<th> |
| 44 |
<input class="ucd-shortcode-holder" type="text" value="[site-description]" id="siteDescription" readonly="readonly"> |
| 45 |
<div class="ucd-shortcode-tooltip"> |
| 46 |
<button id="siteDescription" type="button" onclick="ucdCopyToClipboard('siteDescription')" onmouseout="ucdClipboardOut()"><span class="ucd-shortcode-tooltip-text" id="siteDescriptionTip">Copy to clipboard</span>Copy</button> |
| 47 |
</div> |
| 48 |
</th> |
| 49 |
<td><p>Shortcode to display the site description.</p></td> |
| 50 |
</tr> |
| 51 |
|
| 52 |
<tr class="ucd-shortcode-tr ucd-pro-version"> |
| 53 |
<th> |
| 54 |
<input class="ucd-shortcode-holder" type="text" value="[url]" id="siteUrl" readonly="readonly"> |
| 55 |
<div class="ucd-shortcode-tooltip"> |
| 56 |
<button id="siteUrl" type="button" onclick="ucdCopyToClipboard('siteUrl')" onmouseout="ucdClipboardOut()"><span class="ucd-shortcode-tooltip-text" id="urlTip">Copy to clipboard</span>Copy</button> |
| 57 |
</div> |
| 58 |
</th> |
| 59 |
<td><p>Shortcode to display the site url.</p></td> |
| 60 |
</tr> |
| 61 |
|
| 62 |
<tr class="ucd-shortcode-tr ucd-pro-version"> |
| 63 |
<th> |
| 64 |
<input class="ucd-shortcode-holder" type="text" value="[admin-email]" id="adminEmail" readonly="readonly"> |
| 65 |
<div class="ucd-shortcode-tooltip"> |
| 66 |
<button id="adminEmail" type="button" onclick="ucdCopyToClipboard('adminEmail')" onmouseout="ucdClipboardOut()"><span class="ucd-shortcode-tooltip-text" id="adminEmailTip">Copy to clipboard</span>Copy</button> |
| 67 |
</div> |
| 68 |
</th> |
| 69 |
<td><p>Shortcode to display the admin email.</p></td> |
| 70 |
</tr> |
| 71 |
|
| 72 |
<tr class="ucd-title-holder"> |
| 73 |
<th><h2 class="ucd-inner-title"><?php _e( 'User Information', 'ultimate-client-dash' ) ?></h2></th> |
| 74 |
</tr> |
| 75 |
|
| 76 |
<tr class="ucd-shortcode-tr ucd-pro-version"> |
| 77 |
<th> |
| 78 |
<input class="ucd-shortcode-holder" type="text" value="[username]" id="siteUsername" readonly="readonly"> |
| 79 |
<div class="ucd-shortcode-tooltip"> |
| 80 |
<button id="siteUsername" type="button" onclick="ucdCopyToClipboard('siteUsername')" onmouseout="ucdClipboardOut()"><span class="ucd-shortcode-tooltip-text" id="usernameTip">Copy to clipboard</span>Copy</button> |
| 81 |
</div> </th> |
| 82 |
<td><p>Shortcode to display the current users username.</p></td> |
| 83 |
</tr> |
| 84 |
|
| 85 |
<tr class="ucd-shortcode-tr ucd-pro-version"> |
| 86 |
<th> |
| 87 |
<input class="ucd-shortcode-holder" type="text" value="[email]" id="siteEmail" readonly="readonly"> |
| 88 |
<div class="ucd-shortcode-tooltip"> |
| 89 |
<button id="siteEmail" type="button" onclick="ucdCopyToClipboard('siteEmail')" onmouseout="ucdClipboardOut()"><span class="ucd-shortcode-tooltip-text" id="emailTip">Copy to clipboard</span>Copy</button> |
| 90 |
</div> |
| 91 |
</th> |
| 92 |
<td><p>Shortcode to display the current users email.</p></td> |
| 93 |
</tr> |
| 94 |
|
| 95 |
<tr class="ucd-shortcode-tr ucd-pro-version"> |
| 96 |
<th> |
| 97 |
<input class="ucd-shortcode-holder" type="text" value="[first-name]" id="siteFirstName" readonly="readonly"> |
| 98 |
<div class="ucd-shortcode-tooltip"> |
| 99 |
<button id="siteFirstName" type="button" onclick="ucdCopyToClipboard('siteFirstName')" onmouseout="ucdClipboardOut()"><span class="ucd-shortcode-tooltip-text" id="firstNameTip">Copy to clipboard</span>Copy</button> |
| 100 |
</div> |
| 101 |
</th> |
| 102 |
<td><p>Shortcode to display the current users first name.</p></td> |
| 103 |
</tr> |
| 104 |
|
| 105 |
<tr class="ucd-shortcode-tr ucd-pro-version"> |
| 106 |
<th> |
| 107 |
<input class="ucd-shortcode-holder" type="text" value="[last-name]" id="siteLastName" readonly="readonly"> |
| 108 |
<div class="ucd-shortcode-tooltip"> |
| 109 |
<button id="siteLastName" type="button" onclick="ucdCopyToClipboard('siteLastName')" onmouseout="ucdClipboardOut()"><span class="ucd-shortcode-tooltip-text" id="lastNameTip">Copy to clipboard</span>Copy</button> |
| 110 |
</div> |
| 111 |
</th> |
| 112 |
<td><p>Shortcode to display the current users last name.</p></td> |
| 113 |
</tr> |
| 114 |
|
| 115 |
<tr class="ucd-shortcode-tr ucd-pro-version"> |
| 116 |
<th> |
| 117 |
<input class="ucd-shortcode-holder" type="text" value="[display-name]" id="siteDisplayName" readonly="readonly"> |
| 118 |
<div class="ucd-shortcode-tooltip"> |
| 119 |
<button id="siteDisplayName" type="button" onclick="ucdCopyToClipboard('siteDisplayName')" onmouseout="ucdClipboardOut()"><span class="ucd-shortcode-tooltip-text" id="displayNameTip">Copy to clipboard</span>Copy</button> |
| 120 |
</div> |
| 121 |
</th> |
| 122 |
<td><p>Shortcode to display the current users display name.</p></td> |
| 123 |
</tr> |
| 124 |
|
| 125 |
|
| 126 |
<tr class="ucd-title-holder"> |
| 127 |
<th><h2 class="ucd-inner-title"><?php _e( 'Date', 'ultimate-client-dash' ) ?></h2></th> |
| 128 |
</tr> |
| 129 |
|
| 130 |
<tr class="ucd-shortcode-tr ucd-pro-version"> |
| 131 |
<th> |
| 132 |
<input class="ucd-shortcode-holder" type="text" value="[year]" id="siteYear" readonly="readonly"> |
| 133 |
<div class="ucd-shortcode-tooltip"> |
| 134 |
<button id="siteYear" type="button" onclick="ucdCopyToClipboard('siteYear')" onmouseout="ucdClipboardOut()"><span class="ucd-shortcode-tooltip-text" id="yearTip">Copy to clipboard</span>Copy</button> |
| 135 |
</div> |
| 136 |
</th> |
| 137 |
<td><p>Shortcode to display the current year.</p></td> |
| 138 |
</tr> |
| 139 |
|
| 140 |
<tr class="ucd-shortcode-tr ucd-pro-version"> |
| 141 |
<th> |
| 142 |
<input class="ucd-shortcode-holder" type="text" value="[month]" id="siteMonth" readonly="readonly"> |
| 143 |
<div class="ucd-shortcode-tooltip"> |
| 144 |
<button id="siteMonth" type="button" onclick="ucdCopyToClipboard('siteMonth')" onmouseout="ucdClipboardOut()"><span class="ucd-shortcode-tooltip-text" id="monthTip">Copy to clipboard</span>Copy</button> |
| 145 |
</div> |
| 146 |
</th> |
| 147 |
<td><p>Shortcode to display the current month.</p></td> |
| 148 |
</tr> |
| 149 |
|
| 150 |
<tr class="ucd-shortcode-tr ucd-pro-version"> |
| 151 |
<th> |
| 152 |
<input class="ucd-shortcode-holder" type="text" value="[day]" id="siteDay" readonly="readonly"> |
| 153 |
<div class="ucd-shortcode-tooltip"> |
| 154 |
<button id="siteDay" type="button" onclick="ucdCopyToClipboard('siteDay')" onmouseout="ucdClipboardOut()"><span class="ucd-shortcode-tooltip-text" id="dayTip">Copy to clipboard</span>Copy</button> |
| 155 |
</div> |
| 156 |
</th> |
| 157 |
<td><p>Shortcode to display the current day.</p></td> |
| 158 |
</tr> |
| 159 |
|
| 160 |
<tr class="ucd-title-holder"> |
| 161 |
<th><h2 class="ucd-inner-title"><?php _e( 'Symbols', 'ultimate-client-dash' ) ?></h2></th> |
| 162 |
</tr> |
| 163 |
|
| 164 |
<tr class="ucd-shortcode-tr ucd-pro-version"> |
| 165 |
<th> |
| 166 |
<input class="ucd-shortcode-holder" type="text" value="[copyright]" id="siteCopyright" readonly="readonly"> |
| 167 |
<div class="ucd-shortcode-tooltip"> |
| 168 |
<button id="siteCopyright" type="button" onclick="ucdCopyToClipboard('siteCopyright')" onmouseout="ucdClipboardOut()"><span class="ucd-shortcode-tooltip-text" id="copyrightTip">Copy to clipboard</span>Copy</button> |
| 169 |
</div> |
| 170 |
</th> |
| 171 |
<td><p>Shortcode to display copyright symbol.</p></td> |
| 172 |
</tr> |
| 173 |
|
| 174 |
<tr class="ucd-shortcode-tr ucd-pro-version"> |
| 175 |
<th> |
| 176 |
<input class="ucd-shortcode-holder" type="text" value="[registered]" id="siteRegistered" readonly="readonly"> |
| 177 |
<div class="ucd-shortcode-tooltip"> |
| 178 |
<button id="siteRegistered" type="button" onclick="ucdCopyToClipboard('siteRegistered')" onmouseout="ucdClipboardOut()"><span class="ucd-shortcode-tooltip-text" id="registeredTip">Copy to clipboard</span>Copy</button> |
| 179 |
</div> |
| 180 |
</th> |
| 181 |
<td><p>Shortcode to display the registered symbol.</p></td> |
| 182 |
</tr> |
| 183 |
|
| 184 |
<tr class="ucd-shortcode-tr ucd-pro-version"> |
| 185 |
<th> |
| 186 |
<input class="ucd-shortcode-holder" type="text" value="[trademark]" id="siteTrademark" readonly="readonly"> |
| 187 |
<div class="ucd-shortcode-tooltip"> |
| 188 |
<button id="siteTrademark" type="button" onclick="ucdCopyToClipboard('siteTrademark')" onmouseout="ucdClipboardOut()"><span class="ucd-shortcode-tooltip-text" id="trademarkTip">Copy to clipboard</span>Copy</button> |
| 189 |
</div> |
| 190 |
</th> |
| 191 |
<td><p>Shortcode to display the trademark symbol.</p></td> |
| 192 |
</tr> |
| 193 |
|
| 194 |
</tbody> |
| 195 |
</table> |
| 196 |
</div> |
| 197 |
</form> |
| 198 |
<?php } |
| 199 |
|