definition list of Processes attached to each child page. * * For more details about how Process modules work, please see: * /wire/core/Process.php * * ProcessWire 2.x * Copyright (C) 2012 by Ryan Cramer * Licensed under GNU/GPL v2, see LICENSE.TXT * * http://www.processwire.com * http://www.ryancramer.com * */ class ProcessList extends Process { public static function getModuleInfo() { return array( 'title' => __('List', __FILE__), // getModuleInfo title 'summary' => __('Lists the Process assigned to each child page of the current', __FILE__), // getModuleInfo summary 'version' => 101, 'permanent' => true, 'permission' => 'page-view', ); } public function ___execute() { return $this->render(); } protected function render() { $out = "\n"; if(!$cnt) $out = ''; return $out; } }