This repository has been archived on 2024-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
joomla/bin/component_parts/defaultview.sh

15 lines
283 B
Bash
Raw Normal View History

2023-06-01 08:20:10 -07:00
#!/bin/bash
# Check if $name is set
if [[ -z "${name}" ]]; then
echo "Error: Variable \$name is not set. Exiting (displaycontroller.sh)."
exit 1
fi
2023-06-06 01:58:54 -07:00
cat <<EOM > admin/tmpl/${name}/default.php
2023-06-01 08:20:10 -07:00
<?php defined('_JEXEC') or die('Restricted Access'); ?>
<h2>Hello ${name}!</h2>
EOM