diff options
author | mszulecki | 2007-06-14 17:09:01 +0000 |
---|---|---|
committer | mszulecki | 2007-06-14 17:09:01 +0000 |
commit | 9f108dd1a969473375341d92a7b1252fa2cedc9a (patch) | |
tree | d5f2e35ec0bd2d52dab0ee3282fc6751e0fa8dba /data/generator/sfPropelAdmin/mailadmin/template/templates | |
parent | e35884d11b81e4e4bbd73e1882e2b8011e85d118 (diff) | |
download | mailadmin-9f108dd1a969473375341d92a7b1252fa2cedc9a.tar.gz mailadmin-9f108dd1a969473375341d92a7b1252fa2cedc9a.tar.bz2 |
Initial import.
git-svn-id: http://svn.sukimashita.com/repos/mailadmin/trunk@2 4281df72-ff29-0410-8fee-2d9ac0c5f5a7
Diffstat (limited to 'data/generator/sfPropelAdmin/mailadmin/template/templates')
19 files changed, 339 insertions, 0 deletions
diff --git a/data/generator/sfPropelAdmin/mailadmin/template/templates/_edit_actions.php b/data/generator/sfPropelAdmin/mailadmin/template/templates/_edit_actions.php new file mode 100644 index 0000000..1d0d720 --- /dev/null +++ b/data/generator/sfPropelAdmin/mailadmin/template/templates/_edit_actions.php @@ -0,0 +1,13 @@ +<ul class="sf_admin_actions"> +<?php $editActions = $this->getParameterValue('edit.actions') ?> +<?php if (null !== $editActions): ?> +<?php foreach ((array) $editActions as $actionName => $params): ?> + <?php if ($actionName == '_delete') continue ?> + <?php echo $this->addCredentialCondition($this->getButtonToAction($actionName, $params, true), $params) ?> +<?php endforeach; ?> +<?php else: ?> + <?php echo $this->getButtonToAction('_list', array(), true) ?> + <?php echo $this->getButtonToAction('_save', array(), true) ?> + <?php echo $this->getButtonToAction('_save_and_add', array(), true) ?> +<?php endif; ?> +</ul> diff --git a/data/generator/sfPropelAdmin/mailadmin/template/templates/_edit_footer.php b/data/generator/sfPropelAdmin/mailadmin/template/templates/_edit_footer.php new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/data/generator/sfPropelAdmin/mailadmin/template/templates/_edit_footer.php diff --git a/data/generator/sfPropelAdmin/mailadmin/template/templates/_edit_form.php b/data/generator/sfPropelAdmin/mailadmin/template/templates/_edit_form.php new file mode 100644 index 0000000..47c385e --- /dev/null +++ b/data/generator/sfPropelAdmin/mailadmin/template/templates/_edit_form.php @@ -0,0 +1,93 @@ +[?php echo form_tag('<?php echo $this->getModuleName() ?>/'.$sf_context->getActionName(), array( + 'id' => 'sf_admin_edit_form', + 'name' => 'sf_admin_edit_form', + 'multipart' => true, +<?php foreach ($this->getColumnCategories('edit.display') as $category): ?> +<?php foreach ($this->getColumns('edit.display', $category) as $name => $column): ?> +<?php if ('admin_double_list' == $this->getParameterValue('edit.fields.'.$column->getName().'.type')): ?> + 'onsubmit' => 'double_list_submit(); return true;' +<?php break 2; ?> +<?php endif; ?> +<?php endforeach; ?> +<?php endforeach; ?> +)) ?] + +<?php foreach ($this->getPrimaryKey() as $pk): ?> +[?php echo object_input_hidden_tag($<?php echo $this->getSingularName() ?>, 'get<?php echo $pk->getPhpName() ?>') ?] +<?php endforeach; ?> + +<?php $first = true ?> +<?php foreach ($this->getColumnCategories('edit.display') as $category): ?> +<?php + if ($category[0] == '-') + { + $category_name = substr($category, 1); + $collapse = true; + + if ($first) + { + $first = false; + echo "[?php use_javascript(sfConfig::get('sf_prototype_web_dir').'/js/prototype') ?]\n"; + echo "[?php use_javascript(sfConfig::get('sf_admin_web_dir').'/js/collapse') ?]\n"; + } + } + else + { + $category_name = $category; + $collapse = false; + } +?> +<fieldset id="sf_fieldset_<?php echo preg_replace('/[^a-z0-9_]/', '_', strtolower($category_name)) ?>" class="<?php if ($collapse): ?> collapse<?php endif; ?>"> +<?php if ($category != 'NONE'): ?><h2>[?php echo __('<?php echo $category_name ?>') ?]</h2> + +<?php endif; ?> + +<?php $hides = $this->getParameterValue('edit.hide', array()) ?> +<?php foreach ($this->getColumns('edit.display', $category) as $name => $column): ?> +<?php if (in_array($column->getName(), $hides)) continue ?> +<?php if ($column->isPrimaryKey()) continue ?> +<?php $credentials = $this->getParameterValue('edit.fields.'.$column->getName().'.credentials') ?> +<?php if ($credentials): $credentials = str_replace("\n", ' ', var_export($credentials, true)) ?> + [?php if ($sf_user->hasCredential(<?php echo $credentials ?>)): ?] +<?php endif; ?> +<?php $only_for = $this->getParameterValue('edit.fields.'.$column->getName().'.only_for'); if($only_for): ?> +[?php if($sf_context->getActionName()=='<?php echo $only_for ?>'): ?] +<?php endif; ?> +<div class="form-row"> + [?php echo label_for('<?php echo $this->getParameterValue("edit.fields.".$column->getName().".label_for", $this->getSingularName()."[".$column->getName()."]") ?>', __($labels['<?php echo $this->getSingularName() ?>{<?php echo $column->getName() ?>}']), '<?php if ($column->isNotNull()): ?>class="required" <?php endif; ?>') ?] + <div class="content[?php if ($sf_request->hasError('<?php echo $this->getSingularName() ?>{<?php echo $column->getName() ?>}')): ?] form-error[?php endif; ?]"> + [?php if ($sf_request->hasError('<?php echo $this->getSingularName() ?>{<?php echo $column->getName() ?>}')): ?] + [?php echo form_error('<?php echo $this->getSingularName() ?>{<?php echo $column->getName() ?>}', array('class' => 'form-error-msg')) ?] + [?php endif; ?] + [?php $value = <?php echo $this->getColumnEditTag($column); ?>; echo $value ? $value : ' ' ?] + <?php echo $this->getHelp($column, 'edit') ?> + </div> +</div> + +<?php if($only_for): ?> +[?php endif; ?] +<?php endif; ?> + +<?php if ($credentials): ?> + [?php endif; ?] +<?php endif; ?> + +<?php endforeach; ?> +</fieldset> +<?php endforeach; ?> + +[?php include_partial('edit_actions', array('<?php echo $this->getSingularName() ?>' => $<?php echo $this->getSingularName() ?>)) ?] + +</form> + +<ul class="sf_admin_actions"> +<?php +/* + * WARNING: delete is a form, it must be outside the main form + */ + $editActions = $this->getParameterValue('edit.actions'); +?> + <?php if (null === $editActions || (null !== $editActions && array_key_exists('_delete', $editActions))): ?> + <?php echo $this->addCredentialCondition($this->getButtonToAction('_delete', $editActions['_delete'], true), $editActions['_delete']) ?> + <?php endif; ?> +</ul> diff --git a/data/generator/sfPropelAdmin/mailadmin/template/templates/_edit_header.php b/data/generator/sfPropelAdmin/mailadmin/template/templates/_edit_header.php new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/data/generator/sfPropelAdmin/mailadmin/template/templates/_edit_header.php diff --git a/data/generator/sfPropelAdmin/mailadmin/template/templates/_edit_messages.php b/data/generator/sfPropelAdmin/mailadmin/template/templates/_edit_messages.php new file mode 100644 index 0000000..2306f05 --- /dev/null +++ b/data/generator/sfPropelAdmin/mailadmin/template/templates/_edit_messages.php @@ -0,0 +1,5 @@ +[?php if ($sf_flash->has('notice')): ?] +<div class="save-ok"> +<h2>[?php echo __($sf_flash->get('notice')) ?]</h2> +</div> +[?php endif; ?] diff --git a/data/generator/sfPropelAdmin/mailadmin/template/templates/_filters.php b/data/generator/sfPropelAdmin/mailadmin/template/templates/_filters.php new file mode 100644 index 0000000..76be382 --- /dev/null +++ b/data/generator/sfPropelAdmin/mailadmin/template/templates/_filters.php @@ -0,0 +1,36 @@ +[?php use_helper('Object') ?] + +<?php if ($this->getParameterValue('list.filters')): ?> +<div id="sf_admin_filters" style="display:none"> +[?php echo form_tag('<?php echo $this->getModuleName() ?>/list', array('method' => 'get')) ?] + + <hr size="1" /> + <h2>[?php echo __('Filters') ?]</h2> +<?php foreach ($this->getColumns('list.filters') as $column): $type = $column->getCreoleType() ?> +<?php $credentials = $this->getParameterValue('list.fields.'.$column->getName().'.credentials') ?> +<?php if ($credentials): $credentials = str_replace("\n", ' ', var_export($credentials, true)) ?> + [?php if ($sf_user->hasCredential(<?php echo $credentials ?>)): ?] +<?php endif; ?> + <div class="form-row"> + <label for="<?php echo $column->getName() ?>">[?php echo __('<?php echo str_replace("'", "\\'", $this->getParameterValue('list.fields.'.$column->getName().'.name')) ?>:') ?]</label> + <div class="content"> + [?php echo <?php echo $this->getColumnFilterTag($column) ?> ?] +<?php if ($this->getParameterValue('list.fields.'.$column->getName().'.filter_is_empty')): ?> + <div>[?php echo checkbox_tag('filters[<?php echo $column->getName() ?>_is_empty]', 1, isset($filters['<?php echo $column->getName() ?>_is_empty']) ? $filters['<?php echo $column->getName() ?>_is_empty'] : null) ?] <label for="filters[<?php echo $column->getName() ?>_is_empty]">[?php echo __('is empty') ?]</label></div> +<?php endif; ?> + </div> + </div> +<?php if ($credentials): ?> + [?php endif; ?] +<?php endif; ?> + + <?php endforeach; ?> + + <div class="formaction"> + [?php echo submit_tag(__('filter'), 'name=filter class=sf_admin_action_filter') ?] + [?php echo button_to(__('reset'), '<?php echo $this->getModuleName() ?>/list?filter=filter', 'class=sf_admin_action_reset_filter') ?] + </div> + +</form> +</div> +<?php endif; ?> diff --git a/data/generator/sfPropelAdmin/mailadmin/template/templates/_list.php b/data/generator/sfPropelAdmin/mailadmin/template/templates/_list.php new file mode 100644 index 0000000..cc85625 --- /dev/null +++ b/data/generator/sfPropelAdmin/mailadmin/template/templates/_list.php @@ -0,0 +1,18 @@ +<table> +<tr> +<?php if ($this->getParameterValue('list.object_actions')): ?> +[?php $c = 0; ?] +<?php foreach ($this->getParameterValue('list.object_actions') as $actionName => $params): ?> + <?php echo $this->addCredentialCondition('[?php $c++; ?]', $params) ?> +<?php endforeach; ?> + <th width="1%" colspan="[?php echo $c ?]" id="sf_admin_list_th_sf_actions">[?php echo __('Actions') ?]</th> +<?php endif; ?> +[?php include_partial('list_th_<?php echo $this->getParameterValue('list.layout', 'tabular') ?>') ?] +</tr> +[?php $i = 1; foreach ($pager->getResults() as $<?php echo $this->getSingularName() ?>): $odd = fmod(++$i, 2) ?] +<tr class="sf_admin_row_[?php echo $odd ?]"> +[?php include_partial('list_td_actions', array('<?php echo $this->getSingularName() ?>' => $<?php echo $this->getSingularName() ?>)) ?] +[?php include_partial('list_td_<?php echo $this->getParameterValue('list.layout', 'tabular') ?>', array('<?php echo $this->getSingularName() ?>' => $<?php echo $this->getSingularName() ?>)) ?] +</tr> +[?php endforeach; ?] +</table> diff --git a/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_actions.php b/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_actions.php new file mode 100644 index 0000000..a13263c --- /dev/null +++ b/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_actions.php @@ -0,0 +1,10 @@ +<ul class="sf_admin_actions"> +<?php $listActions = $this->getParameterValue('list.actions') ?> +<?php if (null !== $listActions): ?> + <?php foreach ((array) $listActions as $actionName => $params): ?> + <?php echo $this->addCredentialCondition($this->getButtonToAction($actionName, $params, false), $params) ?> + <?php endforeach; ?> +<?php else: ?> + <?php echo $this->getButtonToAction('_create', array(), false) ?> +<?php endif; ?> +</ul> diff --git a/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_footer.php b/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_footer.php new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_footer.php diff --git a/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_header.php b/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_header.php new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_header.php diff --git a/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_messages.php b/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_messages.php new file mode 100644 index 0000000..c2eb7c7 --- /dev/null +++ b/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_messages.php @@ -0,0 +1,13 @@ +[?php if ($sf_request->getError('delete')): ?] +<div class="form-errors"> + <h2>Could not delete the selected <?php echo sfInflector::humanize($this->getSingularName()) ?></h2> + <ul> + <li>[?php echo $sf_request->getError('delete') ?]</li> + </ul> +</div> +[?php endif; ?] +[?php if ($sf_flash->has('notice')): ?] +<div class="save-ok"> +<h2>[?php echo image_tag("information.gif","alt=[?]")?] [?php echo __($sf_flash->get('notice')) ?]</h2> +</div> +[?php endif; ?] diff --git a/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_td_actions.php b/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_td_actions.php new file mode 100644 index 0000000..fcaca78 --- /dev/null +++ b/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_td_actions.php @@ -0,0 +1,5 @@ +<?php if ($this->getParameterValue('list.object_actions')): ?> +<?php foreach ($this->getParameterValue('list.object_actions') as $actionName => $params): ?> + <?php echo $this->addCredentialCondition("<td><ul class=\"sf_admin_td_actions\">".$this->getLinkToAction($actionName, $params, true)."</ul></td>", $params) ?> +<?php endforeach; ?> +<?php endif; ?> diff --git a/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_td_stacked.php b/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_td_stacked.php new file mode 100644 index 0000000..0d9e274 --- /dev/null +++ b/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_td_stacked.php @@ -0,0 +1,16 @@ +<td colspan="<?php echo count($this->getColumns('list.display')) ?>"> +<?php if ($this->getParameterValue('list.params')): ?> + <?php echo $this->getI18NString('list.params') ?> +<?php else: ?> +<?php $hides = $this->getParameterValue('list.hide', array()) ?> +<?php foreach ($this->getColumns('list.display') as $column): ?> +<?php if (in_array($column->getName(), $hides)) continue ?> + <?php if ($column->isLink()): ?> + [?php echo link_to(<?php echo $this->getColumnListTag($column) ?> ? <?php echo $this->getColumnListTag($column) ?> : __('-'), '<?php echo $this->getModuleName() ?>/edit?<?php echo $this->getPrimaryKeyUrlParams() ?>) ?] + <?php else: ?> + [?php echo <?php echo $this->getColumnListTag($column) ?> ?] + <?php endif; ?> + - +<?php endforeach; ?> +<?php endif; ?> +</td>
\ No newline at end of file diff --git a/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_td_tabular.php b/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_td_tabular.php new file mode 100644 index 0000000..e4e50bb --- /dev/null +++ b/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_td_tabular.php @@ -0,0 +1,30 @@ +<?php $hs = $this->getParameterValue('list.hide', array()) ?> +<?php foreach ($this->getColumns('list.display') as $column): ?> +<?php if (in_array($column->getName(), $hs)) continue ?> +<?php $credentials = $this->getParameterValue('list.fields.'.$column->getName().'.credentials') ?> +<?php if ($credentials): $credentials = str_replace("\n", ' ', var_export($credentials, true)) ?> + [?php if ($sf_user->hasCredential(<?php echo $credentials ?>)): ?] +<?php endif; ?> + <?php + $user_params = $this->getParameterValue('list.fields.'.$column->getName().'.params'); + $user_params = is_array($user_params) ? sfToolkit::stringToArray($user_params) : $user_params; + ?> + <?php if ($column->isLink()): ?> + + <?php $editcredentials = $this->getParameterValue('list.object_actions.edit.credentials'); ?> + <?php if($editcredentials): $editcredentials = str_replace("\n", ' ', var_export($editcredentials, true)); ?> + [?php if ($sf_user->hasCredential(<?php echo $editcredentials ?>)): ?] + <?php endif; ?> + [?php echo tag('td', <?php echo var_export($user_params, true) ?>, true) ?][?php echo link_to(<?php echo $this->getColumnListTag($column) ?> ? <?php echo $this->getColumnListTag($column) ?> : __('-'), '<?php echo $this->getModuleName() ?>/edit?<?php echo $this->getPrimaryKeyUrlParams() ?>) ?]</td> +<?php if ($editcredentials): ?> + [?php else: ?] + [?php echo tag('td', <?php echo var_export($user_params, true) ?>, true) ?][?php echo <?php echo $this->getColumnListTag($column) ?> ?]</td> + [?php endif; ?] +<?php endif; ?> +<?php else: ?> + [?php echo tag('td', <?php echo var_export($user_params, true) ?>, true) ?][?php echo <?php echo $this->getColumnListTag($column) ?> ?]</td> + <?php endif; ?> +<?php if ($credentials): ?> + [?php endif; ?] +<?php endif; ?> +<?php endforeach; ?> diff --git a/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_th_stacked.php b/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_th_stacked.php new file mode 100644 index 0000000..305bdcf --- /dev/null +++ b/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_th_stacked.php @@ -0,0 +1 @@ +[?php include_partial('list_th_tabular') ?] diff --git a/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_th_tabular.php b/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_th_tabular.php new file mode 100644 index 0000000..4a48eca --- /dev/null +++ b/data/generator/sfPropelAdmin/mailadmin/template/templates/_list_th_tabular.php @@ -0,0 +1,28 @@ +<?php $hides = $this->getParameterValue('list.hide', array()) ?> +<?php foreach ($this->getColumns('list.display') as $column): ?> +<?php if (in_array($column->getName(), $hides)) continue ?> +<?php $credentials = $this->getParameterValue('list.fields.'.$column->getName().'.credentials') ?> +<?php if ($credentials): $credentials = str_replace("\n", ' ', var_export($credentials, true)) ?> + [?php if ($sf_user->hasCredential(<?php echo $credentials ?>)): ?] +<?php endif; ?> + <?php + $user_params = $this->getParameterValue('list.fields.'.$column->getName().'.params'); + $user_params = is_array($user_params) ? $user_params : sfToolkit::stringToArray($user_params); + $user_params['id'] = "sf_admin_list_th_".$column->getName(); + ?> + [?php echo tag('th', <?php echo var_export($user_params, true) ?>, true) ?] + <?php if ($column->isReal()): ?> + [?php if ($sf_user->getAttribute('sort', null, 'sf_admin/<?php echo $this->getSingularName() ?>/sort') == '<?php echo $column->getName() ?>'): ?] + [?php echo link_to(__('<?php echo str_replace("'", "\\'", $this->getParameterValue('list.fields.'.$column->getName().'.name')) ?>'), '<?php echo $this->getModuleName() ?>/list?sort=<?php echo $column->getName() ?>&type='.($sf_user->getAttribute('type', 'asc', 'sf_admin/<?php echo $this->getSingularName() ?>/sort') == 'asc' ? 'desc' : 'asc')) ?][?php $sorttype = $sf_user->getAttribute('type', 'asc','sf_admin/<?php echo$this->getSingularName() ?>/sort'); if($sorttype=='images') $sorttype = 'desc'; ?][?php echo image_tag('sort-'.$sorttype.'.gif', array('alt' => __($sorttype), 'border' => 0)) ?] + [?php else: ?] + [?php echo link_to(__('<?php echo str_replace("'", "\\'", $this->getParameterValue('list.fields.'.$column->getName().'.name')) ?>'), '<?php echo $this->getModuleName() ?>/list?sort=<?php echo $column->getName() ?>&type=asc') ?] + [?php endif; ?] + <?php else: ?> + [?php echo __('<?php echo str_replace("'", "\\'", $this->getParameterValue('list.fields.'.$column->getName().'.name')) ?>') ?] + <?php endif; ?> + <?php echo $this->getHelpAsIcon($column, 'list') ?> + </th> +<?php if ($credentials): ?> + [?php endif; ?] +<?php endif; ?> +<?php endforeach; ?> diff --git a/data/generator/sfPropelAdmin/mailadmin/template/templates/_pager.php b/data/generator/sfPropelAdmin/mailadmin/template/templates/_pager.php new file mode 100644 index 0000000..818d925 --- /dev/null +++ b/data/generator/sfPropelAdmin/mailadmin/template/templates/_pager.php @@ -0,0 +1,13 @@ +[?php if($pager->getNbResults() > 25 || $pager->haveToPaginate()): ?] +<div class="tablenavigation"> +<ul> +[?php if($pager->haveToPaginate()): ?] +<li><span class="pageinfo">Page <span class="pageindex">[?php echo $pager->getPage() ?]</span> of <span class="pageindex">[?php echo $pager->getLastPage() ?]</span></span></li> +<li>[?php if($pager->getPage()!=$pager->getFirstPage()): ?][?php echo link_to(image_tag("first.gif", array('border' => 0, 'alt' => __('First'), 'title' => __('First'))), '<?php echo $this->getModuleName() ?>/list?page='.$pager->getFirstPage()) ?]</a> +[?php echo link_to(image_tag("previous.gif", array('border' => 0, 'alt' => __('Previous'), 'title' => __('Previous'))), '<?php echo $this->getModuleName() ?>/list?page='.$pager->getPreviousPage()) ?]</a>[?php endif; ?] +[?php if($pager->getPage()!=$pager->getLastPage()): ?][?php echo link_to(image_tag("next.gif", array('border' => 0, 'alt' => __('Next'), 'title' => __('Next'))), '<?php echo $this->getModuleName() ?>/list?page='.$pager->getNextPage()) ?] +[?php echo link_to(image_tag("last.gif", array('border' => 0, 'alt' => __('Last'), 'title' => __('Last'))), '<?php echo $this->getModuleName() ?>/list?page='.$pager->getLastPage()) ?][?php endif; ?]</li> +[?php endif; ?] +</ul> +</div> +[?php endif; ?] diff --git a/data/generator/sfPropelAdmin/mailadmin/template/templates/editSuccess.php b/data/generator/sfPropelAdmin/mailadmin/template/templates/editSuccess.php new file mode 100644 index 0000000..2727a2c --- /dev/null +++ b/data/generator/sfPropelAdmin/mailadmin/template/templates/editSuccess.php @@ -0,0 +1,20 @@ +[?php use_helper('Object', 'Validation', 'ObjectAdmin', 'I18N', 'Date') ?] + +<div id="context"> + +<h1>[?php echo ($sf_context->getActionName()=='create' ? <?php echo $this->getI18NString('create.title', 'create '.$this->getModuleName(), false) ?>: <?php echo $this->getI18NString('edit.title', 'edit '.$this->getModuleName(), false) ?>) ?]</h1> + +<div id="sf_admin_header"> +[?php include_partial('<?php echo $this->getModuleName() ?>/edit_header', array('<?php echo $this->getSingularName() ?>' => $<?php echo $this->getSingularName() ?>)) ?] +</div> + +<div id="sf_admin_content"> +[?php include_partial('<?php echo $this->getModuleName() ?>/edit_messages', array('<?php echo $this->getSingularName() ?>' => $<?php echo $this->getSingularName() ?>, 'labels' => $labels)) ?] +[?php include_partial('<?php echo $this->getModuleName() ?>/edit_form', array('<?php echo $this->getSingularName() ?>' => $<?php echo $this->getSingularName() ?>, 'labels' => $labels)) ?] +</div> + +<div id="sf_admin_footer"> +[?php include_partial('<?php echo $this->getModuleName() ?>/edit_footer', array('<?php echo $this->getSingularName() ?>' => $<?php echo $this->getSingularName() ?>)) ?] +</div> + +</div> diff --git a/data/generator/sfPropelAdmin/mailadmin/template/templates/listSuccess.php b/data/generator/sfPropelAdmin/mailadmin/template/templates/listSuccess.php new file mode 100644 index 0000000..c92aaf4 --- /dev/null +++ b/data/generator/sfPropelAdmin/mailadmin/template/templates/listSuccess.php @@ -0,0 +1,38 @@ +[?php use_helper('I18N', 'Date', 'Tag', 'Javascript') ?] + +<div id="context"> + +<h1><?php echo $this->getI18NString('list.title', $this->getModuleName().' list') ?></h1> + +<div id="sf_admin_header"> +[?php include_partial('<?php echo $this->getModuleName() ?>/list_header', array('pager' => $pager)) ?] +[?php include_partial('<?php echo $this->getModuleName() ?>/list_messages', array('pager' => $pager)) ?] +</div> + +<div id="sf_admin_content"> +<span class="summary"><b>[?php echo __('Results') ?]:</b> [?php echo $pager->getNbResults() ?]</span><span class="summary"><b>Entries per Page:</b> [?php echo select_tag("resultsperpage", options_for_select(<?php $opt = $this->getParameterValue('list.max_per_page_options', array(10,25,50,100)); var_export(@array_combine($opt,$opt)); ?>, $pager->getMaxPerPage()), array("onchange" => "document.location.href = '".url_for('<?php echo $this->getModuleName() ?>/list')."?max_per_page='+this.value")) ?]</span><?php if ($this->getParameterValue('list.filters')): ?><span class="summary toggle">[?php echo link_to_function(__('Toggle Filter Settings'), visual_effect('toggle_blind', 'sf_admin_filters' )) ?]</span> +<?php endif; ?> + +<?php if ($this->getParameterValue('list.filters')): ?> +<div id="sf_admin_bar"> +[?php include_partial('filters', array('filters' => $filters)) ?] +</div> +<?php endif; ?> + +[?php include_partial('pager', array('pager' => $pager, 'location' => 'top')) ?] +<hr size="1" /> +[?php if (!$pager->getNbResults()): ?] +[?php echo __('no result') ?] +[?php else: ?] +[?php include_partial('<?php echo $this->getModuleName() ?>/list', array('pager' => $pager)) ?] +[?php endif; ?] +<hr size="1" /> +[?php include_partial('pager', array('pager' => $pager, 'location' => 'bottom')) ?] +[?php include_partial('list_actions') ?] +</div> + +<div id="sf_admin_footer"> +[?php include_partial('<?php echo $this->getModuleName() ?>/list_footer', array('pager' => $pager)) ?] +</div> + +</div> |