예제 #1
0
 public function init()
 {
     if (!isset($this->args['post_types']) || empty($this->args['post_types'])) {
         return;
     }
     p2p_register_connection_type(array('name' => APP_FAVORITES_CONNECTION, 'from' => (array) $this->args['post_types'], 'to' => 'user'));
     parent::init();
 }
 public function init()
 {
     register_post_status(APP_POST_STATUS_DELETED, array('label' => _x('Deleted', 'listing', APP_TD), 'public' => false, 'exclude_from_search' => true, 'show_in_admin_all_list' => true, 'show_in_admin_status_list' => true, 'label_count' => _n_noop('Deleted <span class="count">(%s)</span>', 'Deleted <span class="count">(%s)</span>', APP_TD)));
     parent::init();
 }