It is only possible to set peer_method in generator.yml config file, but not peer_count_method.
sfPager class has method for setting this parameter, but configuration file doesn't handle it.
Probably also object_select_tag helper hasn't this configuration possibility, but I didn't checked it.
Index: /data/generator/sfPropelAdmin/default/template/actions/actions.class.php
===================================================================
--- D:/htdocs/guru/data/symfony/generator/sfPropelAdmin/default/template/actions/actions.class.php (revision 304)
+++ D:/htdocs/guru/data/symfony/generator/sfPropelAdmin/default/template/actions/actions.class.php (working copy)
@@ -40,6 +40,9 @@
$this->pager->setPage($this->getRequestParameter('page', 1));
<?php if ($this->getParameterValue('list.peer_method')): ?>
$this->pager->setPeerMethod('<?php echo $this->getParameterValue('list.peer_method') ?>');
<?php endif ?>
+<?php if ($this->getParameterValue('list.peer_count_method')): ?>
+ $this->pager->setPeerCountMethod('<?php echo $this->getParameterValue('list.peer_count_method') ?>');
+<?php endif ?>
$this->pager->init();
}