| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242 | <?php/** * @version 7.10 [rev.7.10.01] */return array(    'routes' => array(        'members-register'                => array(            'register',            array(                'controller' => 'user',                'action'     => 'register',            ),        ),        'members-login'                   => array(            'login',            array(                'controller' => 'user',                'action'     => 'login',            ),        ),        'members-logout'                  => array(            'logout',            array(                'controller' => 'user',                'action'     => 'logout',            ),        ),        'members-forgot-username'         => array(            'forgot-username',            array(                'controller' => 'user',                'action'     => 'forgot-username',            ),        ),        'members-forgot-password'         => array(            'forgot-password',            array(                'controller' => 'user',                'action'     => 'forgot-password',            ),        ),        'members-index'                   => array(            'members-area',            array(                'controller' => 'summary',                'action'     => 'index',            ),        ),        'members-messaging-view-topic'    => array(            'members/messaging/topic',            array(                'controller' => 'messaging',                'action'     => 'topic',            ),        ),        'members-messaging-create'        => array(            'members/messaging/create',            array(                'controller' => 'messaging',                'action'     => 'create',            ),        ),        'members-register-confirm'        => array(            'confirm-registration/:key',            array(                'controller' => 'user',                'action'     => 'confirm-registration',            ),        ),        'members-feedback-details'        => array(            'display-feedback/:username',            array(                'controller' => 'reputation',                'action'     => 'details',            ),        ),        'members-feedback-details-filter' => array(            'display-feedback/:username/:filter',            array(                'controller' => 'reputation',                'action'     => 'details',            ),        ),        // members area page routes (for pages that work similar for more than one action)        'members-purchases'               => array(            'members/buying/purchases',            array(                'controller' => 'invoices',                'action'     => 'browse',                'type'       => 'bought',            ),        ),        'members-sales'                   => array(            'members/selling/sales',            array(                'controller' => 'invoices',                'action'     => 'browse',                'type'       => 'sold',            ),        ),        'members-buying-offers'  => array(            'members/buying/offers',            array(                'controller' => 'offers',                'action'     => 'browse',                'type'       => 'buying',            ),        ),        'members-selling-offers' => array(            'members/selling/offers',            array(                'controller' => 'offers',                'action'     => 'browse',                'type'       => 'selling',            ),        ),        'members-selling-browse' => array(            'members/selling/browse/:filter',            array(                'controller' => 'selling',                'action'     => 'browse',            ),        ),        'members-account-history'         => array(            'members/account/history',            array(                'controller' => 'account',                'action'     => 'history',            ),        ),        'members-stores'                  => array(            'all-stores',            array(                'controller' => 'stores',                'action'     => 'index',            ),        ),        'members-stores-browse'           => array(            'stores/browse',            array(                'controller' => 'stores',                'action'     => 'browse',            ),        ),        'members-tools-favorite-stores'   => array(            'members/tools/favorite-stores',            array(                'controller' => 'tools',                'action'     => 'favorite-stores',            ),        ),        'members-tools-listings-watch'    => array(            'members/tools/watched-items',            array(                'controller' => 'tools',                'action'     => 'watched-items',            ),        ),        'members-tools-bulk-lister'       => array(            'members/tools/bulk-lister',            array(                'controller' => 'tools',                'action'     => 'bulk-lister',            ),        ),        'members-store-manage-categories' => array(            'members/store/categories',            array(                'controller' => 'store',                'action'     => 'categories',            ),        ),        'members-digital-download-link'   => array(            'download',            array(                'controller' => 'buying',                'action'     => 'download',            ),        ),        'members-newsletter-unsubscribe'  => array(            'unsubscribe',            array(                'controller' => 'user',                'action'     => 'newsletter-unsubscribe',            ),        ),        'members-wishlist'                => array(            'wishlist',            array(                'controller' => 'tools',                'action'     => 'watched-items',            ),        ),        'members-tools-edit-blocked-user'      => array(            'members/tools/edit-blocked-user',            array(                'controller' => 'tools',                'action'     => 'edit-blocked-user',            ),        ),        'members-tools-edit-voucher'      => array(            'members/tools/edit-voucher',            array(                'controller' => 'tools',                'action'     => 'edit-voucher',            ),        ),        'members-account-edit-address'    => array(            'members/account/edit-address',            array(                'controller' => 'account',                'action'     => 'edit-address',            ),        ),        'members-offers-details'          => array(            'members/offers/details/:type',            array(                'controller' => 'offers',                'action'     => 'details',            ),        ),        'members-offers-counter'          => array(            'members/offers/counter/:type/:id',            array(                'controller' => 'offers',                'action'     => 'counter',            ),        ),    ),    'view'   => array(        'layouts_path' => __DIR__ . '/../view/layout',        'views_path'   => __DIR__ . '/../view',        'layout_file'  => 'layout.phtml',    ),);
 |