You do not have to send them all individually.
There must be one place where the HeadLink helper is printed, and all other calls only add a stylesheet to this print helper. For example. the following rules in view scripts:
<?php $this->headLink()->appendStylesheet('/Layouts/admin/css/button.css'); ?>
<?php $this->headLink()->appendStylesheet('/Layouts/admin/css/inputText.css'); ?>
<?php $this->headLink()->appendStylesheet('/Layouts/admin/css/fancyTable.class.css'); ?>
And then this is in yours <head>:
<?= $this->headLink() ?>
Or, if they all go in the same place, you can tie them together
<?= $this->headLink()
->appendStylesheet('/Layouts/admin/css/button.css')
->appendStylesheet('/Layouts/admin/css/inputText.css')
->appendStylesheet('/Layouts/admin/css/fancyTable.class.css'); ?>
HeadLink 3 .
. Zend HeadLink Zend; .