settings.php in Plugin Detective – Troubleshooting Conflicts 1.2.24, at troubleshoot/includes/settings.php
| 1 | <?php |
| 2 | /** |
| 3 | * Troubleshoot Filesystem. |
| 4 | * |
| 5 | * @since 0.0.0 |
| 6 | * @package Troubleshoot |
| 7 | */ |
| 8 | |
| 9 | /** |
| 10 | * Troubleshoot Filesystem. |
| 11 | * |
| 12 | * @since 0.0.0 |
| 13 | */ |
| 14 | class PDT_Filesystem { |
| 15 | /** |
| 16 | * Parent plugin class. |
| 17 | * |
| 18 | * @since 0.0.0 |
| 19 | * |
| 20 | * @var Troubleshoot |
| 21 | */ |
| 22 | protected $plugin = null; |
| 23 | |
| 24 | /** |
| 25 | * Constructor. |
| 26 | * |
| 27 | * @since 0.0.0 |
| 28 | * |
| 29 | * @param Troubleshoot $plugin Main plugin object. |
| 30 | */ |
| 31 | public function __construct( $plugin ) { |
| 32 | $this->plugin = $plugin; |
| 33 | $this->hooks(); |
| 34 | } |
| 35 | |
| 36 | /** |
| 37 | * Initiate our hooks. |
| 38 | * |
| 39 | * @since 0.0.0 |
| 40 | */ |
| 41 | public function hooks() { |
| 42 | |
| 43 | } |
| 44 | } |
| 45 |