rental prices

This commit is contained in:
2025-10-07 16:08:46 -07:00
parent ac7999938b
commit b13684802b

View File

@@ -0,0 +1,26 @@
<?php
namespace Actions;
use ofc\RadAction;
class WooCommerceBeforeAddToCartButtonAction extends RadAction
{
/**
* @var string WordPress hook to attach to.
*/
protected string $hookName = 'woocommerce_before_add_to_cart_button';
/**
* @var int Hook priority.
*/
protected int $priority = 10;
/**
* Your action callback.
*/
public function callback()
{
echo "<p>yay!</p>";
}
}