Flows
Flows in North Commerce are a way to manage and coordinate different aspects of the e-commerce functionality, particularly in the frontend user interface.
What are North Commerce Flows?
How flows work
public function attr($name, $value, $dest = false) {
echo $this->get_attr($name, $value);
if($dest) {
echo " ";
echo $this->get_link($name, $dest);
}
}public function get_attr($name, $value) {
return $this->get_attr_name($name) . '="' . $this->get_attr_value($value) . '"';
}Flow Classes
Last updated