View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
3740 | Composr | core | public | 2018-11-09 00:41 | 2020-05-27 19:27 |
Reporter | Chris Graham | Assigned To | Chris Graham | ||
Priority | normal | Severity | feature | ||
Status | resolved | Resolution | fixed | ||
Summary | 3740: FILE_EXISTS symbol | ||||
Description | Create and document a FILE_EXISTS symbol. This may be useful to templators who may embed procedurally-named graphics present on the filesystem, iff they exist. | ||||
Additional Information | Sample code for a symbol hook which works (sources_custom/hooks/systems/symbols/FILE_EXISTS.php)... <?php class Hook_symbol_FILE_EXISTS { public function run($param) { if (!isset($param[0])) { return '0'; } $path = $param[0]; if (url_is_local($path)) { $path = get_custom_file_base() . '/'. $path; } return file_exists($path) ? '1' : '0'; } } | ||||
Tags | Good for training | ||||
Attach Tags | |||||
Time estimation (hours) | 0.5 | ||||
Sponsorship open | |||||
Date Modified | Username | Field | Change |
---|---|---|---|
2018-11-09 00:41 | Chris Graham | New Issue | |
2018-11-09 00:42 | Chris Graham | Additional Information Updated | |
2019-06-27 19:55 | Chris Graham | Tag Attached: Good for training | |
2020-05-27 19:27 | Chris Graham | Assigned To | => Chris Graham |
2020-05-27 19:27 | Chris Graham | Status | Not Assigned => Resolved |
2020-05-27 19:27 | Chris Graham | Resolution | open => fixed |