| 1 |
<?php |
| 2 |
|
| 3 |
// Exit if accessed directly. |
| 4 |
if ( ! defined( 'ABSPATH' ) ) { |
| 5 |
exit; |
| 6 |
} |
| 7 |
|
| 8 |
/** |
| 9 |
* Display inline content in the settings area. |
| 10 |
* |
| 11 |
* Unlike the 'content' field type, the content in this case is not full-width but is |
| 12 |
* added to the second <td></td> in the settings table row. |
| 13 |
* |
| 14 |
* @author David Bisset |
| 15 |
* @package Charitable/Admin View/Settings |
| 16 |
* @copyright Copyright (c) 2023, WP Charitable LLC |
| 17 |
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 18 |
* @since 1.6.18 |
| 19 |
* @version 1.6.18 |
| 20 |
*/ |
| 21 |
|
| 22 |
echo $view_args['content']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 23 |
|