Files
luos/gulliver/bin/tasks/templates/pluginEdit.tpl

32 lines
1.1 KiB
Smarty
Raw Normal View History

<?php
$aux = explode('|', isset($_GET['id'])? $_GET['id'] : '');
2010-12-02 23:34:41 +00:00
<!-- START BLOCK : keys -->
${phpName} = str_replace('"', '', $aux[{index}]);
2010-12-02 23:34:41 +00:00
<!-- END BLOCK : keys -->
<!-- START BLOCK : plugin -->
require_once (PATH_PLUGINS . '{pluginName}' . PATH_SEP . 'class.{pluginName}.php');
$pluginObj = new {pluginName}Class();
2010-12-02 23:34:41 +00:00
<!-- END BLOCK : plugin -->
require_once ("classes/model/{className}.php");
2010-12-02 23:34:41 +00:00
//if exists the row in the database propel will update it, otherwise will insert.
$tr = {className}Peer::retrieveByPK({keylist});
2010-12-02 23:34:41 +00:00
if ((is_object($tr) && get_class($tr) == '{className}')) {
2010-12-02 23:34:41 +00:00
<!-- START BLOCK : fields -->
$fields['{name}'] = $tr->get{phpName}();
2010-12-02 23:34:41 +00:00
<!-- END BLOCK : fields -->
}
else
$fields = array();
$G_MAIN_MENU = '{projectName}';
$G_SUB_MENU = '{phpClassName}';
$G_ID_MENU_SELECTED = '{menuId}';
$G_ID_SUB_MENU_SELECTED = '{menuId}';
$G_PUBLISH = new Publisher;
$G_PUBLISH->AddContent('xmlform', 'xmlform', '{phpFolderName}/{phpClassName}Edit', '', $fields, '{phpClassName}Save');
G::RenderPage('publish');
2010-12-02 23:34:41 +00:00
?>