|
|
@ -112,8 +112,7 @@ function ptheme() { |
|
|
|
fi |
|
|
|
fi |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#Takes you to the child theme |
|
|
|
function get_theme() { |
|
|
|
function theme() { |
|
|
|
|
|
|
|
public_html=${PWD%/public_html*}/public_html |
|
|
|
public_html=${PWD%/public_html*}/public_html |
|
|
|
if [ -d $public_html ]; then |
|
|
|
if [ -d $public_html ]; then |
|
|
|
if [ -d $public_html/wp ]; then |
|
|
|
if [ -d $public_html/wp ]; then |
|
|
@ -123,42 +122,41 @@ function theme() { |
|
|
|
fi |
|
|
|
fi |
|
|
|
theme=$(dirname $(wp --path="$wpPath" theme path $(wp --path="$wpPath" theme list | grep "active" | grep -v "inactive" | awk '{print $1}'))) |
|
|
|
theme=$(dirname $(wp --path="$wpPath" theme path $(wp --path="$wpPath" theme list | grep "active" | grep -v "inactive" | awk '{print $1}'))) |
|
|
|
if [ -d $theme ]; then |
|
|
|
if [ -d $theme ]; then |
|
|
|
cd $theme |
|
|
|
echo $theme |
|
|
|
else |
|
|
|
else |
|
|
|
echo " Can't find theme folder " |
|
|
|
echo "" |
|
|
|
fi |
|
|
|
fi |
|
|
|
else |
|
|
|
else |
|
|
|
echo " Can't find public_html folder." |
|
|
|
echo "" |
|
|
|
|
|
|
|
fi |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#Takes you to the child theme |
|
|
|
|
|
|
|
function theme() { |
|
|
|
|
|
|
|
ctheme=$(get_theme) |
|
|
|
|
|
|
|
if [ ! -z "$ctheme" ]; then |
|
|
|
|
|
|
|
cd $ctheme |
|
|
|
fi |
|
|
|
fi |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#Takes you to the js folder child theme |
|
|
|
#Takes you to the js folder child theme |
|
|
|
function js() { |
|
|
|
function js() { |
|
|
|
public_html=${PWD%/public_html*}/public_html |
|
|
|
ctheme=$(get_theme) |
|
|
|
if [ -d $public_html ]; then |
|
|
|
if [ ! -z "$ctheme" ]; then |
|
|
|
if [ -d $public_html/wp ]; then |
|
|
|
cd $ctheme/js |
|
|
|
wpPath=$public_html/wp; |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
wpPath=$public_html; |
|
|
|
|
|
|
|
fi |
|
|
|
|
|
|
|
theme=$(dirname $(wp --path="$wpPath" theme path $(wp --path="$wpPath" theme list | grep "active" | grep -v "inactive" | awk '{print $1}'))) |
|
|
|
|
|
|
|
if [ -d $theme ]; then |
|
|
|
|
|
|
|
if [ -d "$theme/js" ]; then |
|
|
|
|
|
|
|
cd "$theme/js" |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
echo "Can't find a JS folder. Here is the theme" |
|
|
|
|
|
|
|
cd "$theme" |
|
|
|
|
|
|
|
fi |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
echo " Can't find theme folder " |
|
|
|
|
|
|
|
fi |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
echo " Can't find public_html folder." |
|
|
|
|
|
|
|
fi |
|
|
|
fi |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#Takes you to the css folder child theme |
|
|
|
#Takes you to the css folder child theme |
|
|
|
function css() { |
|
|
|
function css() { |
|
|
|
|
|
|
|
ctheme=$(get_theme) |
|
|
|
|
|
|
|
if [ ! -z "$ctheme" ]; then |
|
|
|
|
|
|
|
cd $ctheme/css |
|
|
|
|
|
|
|
fi |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#Takes you to the plugin directory |
|
|
|
|
|
|
|
function plugins() { |
|
|
|
public_html=${PWD%/public_html*}/public_html |
|
|
|
public_html=${PWD%/public_html*}/public_html |
|
|
|
if [ -d $public_html ]; then |
|
|
|
if [ -d $public_html ]; then |
|
|
|
if [ -d $public_html/wp ]; then |
|
|
|
if [ -d $public_html/wp ]; then |
|
|
@ -166,24 +164,14 @@ function css() { |
|
|
|
else |
|
|
|
else |
|
|
|
wpPath=$public_html; |
|
|
|
wpPath=$public_html; |
|
|
|
fi |
|
|
|
fi |
|
|
|
theme=$(dirname $(wp --path="$wpPath" theme path $(wp --path="$wpPath" theme list | grep "active" | grep -v "inactive" | awk '{print $1}'))) |
|
|
|
cd $(wp --path="$wpPath" plugin path) |
|
|
|
if [ -d $theme ]; then |
|
|
|
|
|
|
|
if [ -d "$theme/css" ]; then |
|
|
|
|
|
|
|
cd "$theme/css" |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
echo "Can't find a CSS folder. Here is the theme" |
|
|
|
|
|
|
|
cd "$theme" |
|
|
|
|
|
|
|
fi |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
echo " Can't find theme folder " |
|
|
|
|
|
|
|
fi |
|
|
|
|
|
|
|
else |
|
|
|
else |
|
|
|
echo " Can't find public_html folder." |
|
|
|
echo " Can't find public_html folder." |
|
|
|
fi |
|
|
|
fi |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#Takes you to the plugin directory |
|
|
|
#Copies a woo tepmplate file to the theme |
|
|
|
function plugins() { |
|
|
|
function woocp() { |
|
|
|
public_html=${PWD%/public_html*}/public_html |
|
|
|
public_html=${PWD%/public_html*}/public_html |
|
|
|
if [ -d $public_html ]; then |
|
|
|
if [ -d $public_html ]; then |
|
|
|
if [ -d $public_html/wp ]; then |
|
|
|
if [ -d $public_html/wp ]; then |
|
|
@ -191,7 +179,26 @@ function plugins() { |
|
|
|
else |
|
|
|
else |
|
|
|
wpPath=$public_html; |
|
|
|
wpPath=$public_html; |
|
|
|
fi |
|
|
|
fi |
|
|
|
cd $(wp --path="$wpPath" plugin path) |
|
|
|
woocommerce=$(dirname $(wp --path="$wpPath" plugin path woocommerce)) |
|
|
|
|
|
|
|
themes=$(dirname $(wp --path="$wpPath" theme path )) |
|
|
|
|
|
|
|
if [ -d "$woocommerce" ]; then |
|
|
|
|
|
|
|
#If we are here, we know what the woocommerce path is. |
|
|
|
|
|
|
|
# If in WOO directory, we want to copy to the theme directory. If we are not in Woo directory, copy to the current directory |
|
|
|
|
|
|
|
case $PWD/ in |
|
|
|
|
|
|
|
$woocommerce/*) |
|
|
|
|
|
|
|
theme=$(get_theme) |
|
|
|
|
|
|
|
#if [[ $PWD = $woocommerce/templates |
|
|
|
|
|
|
|
;; |
|
|
|
|
|
|
|
$themes/*) |
|
|
|
|
|
|
|
echo "in themes dir" |
|
|
|
|
|
|
|
;; |
|
|
|
|
|
|
|
*) |
|
|
|
|
|
|
|
echo "soewhere else" |
|
|
|
|
|
|
|
;; |
|
|
|
|
|
|
|
esac |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
echo "Can't find woocommerce" |
|
|
|
|
|
|
|
fi; |
|
|
|
else |
|
|
|
else |
|
|
|
echo " Can't find public_html folder." |
|
|
|
echo " Can't find public_html folder." |
|
|
|
fi |
|
|
|
fi |
|
|
|