function FeedWordPressPerformancePage()
 {
     // Set meta-box context name
     FeedWordPressAdminPage::FeedWordPressAdminPage('feedwordpressperformancepage');
     $this->dispatch = 'feedwordpress_performance';
     $this->filename = __FILE__;
 }
 function FeedWordPressPerformancePage()
 {
     // Set meta-box context name
     FeedWordPressAdminPage::FeedWordPressAdminPage('feedwordpressperformancepage');
     $this->dispatch = 'feedwordpress_performance';
     $this->filename = FWP_PERFORMANCE_PAGE_SLUG;
 }
 /**
  * Construct the posts page object.
  *
  * @param mixed $link An object of class {@link SyndicatedLink} if created for one feed's settings, NULL if created for global default settings
  */
 function FeedWordPressPostsPage($link = NULL)
 {
     FeedWordPressAdminPage::FeedWordPressAdminPage('feedwordpresspostspage', $link);
     $this->dispatch = 'feedwordpress_posts_settings';
     $this->filename = FWP_POSTS_PAGE_SLUG;
     $this->updatedPosts = new UpdatedPostsControl($this);
 }
 function FeedWordPressAuthorsPage($link)
 {
     FeedWordPressAdminPage::FeedWordPressAdminPage('feedwordpressauthors', $link);
     $this->refresh_author_list();
     $this->dispatch = 'feedwordpress_author_settings';
     $this->filename = FWP_AUTHORS_PAGE_SLUG;
 }
 function FeedWordPressSyndicationPage()
 {
     FeedWordPressAdminPage::FeedWordPressAdminPage('feedwordpresssyndication', NULL);
     // No over-arching form element
     $this->dispatch = NULL;
     $this->filename = FWP_SYNDICATION_PAGE_SLUG;
 }
 function FeedWordPressDiagnosticsPage()
 {
     // Set meta-box context name
     FeedWordPressAdminPage::FeedWordPressAdminPage('feedwordpressdiagnosticspage');
     $this->dispatch = 'feedwordpress_diagnostics';
     $this->filename = __FILE__;
 }
 function FeedWordPressDiagnosticsPage()
 {
     // Set meta-box context name
     FeedWordPressAdminPage::FeedWordPressAdminPage('feedwordpressdiagnosticspage');
     $this->dispatch = 'feedwordpress_diagnostics';
     $this->filename = FWP_DIAGNOSTICS_PAGE_SLUG;
 }
	function FeedWordPressDiagnosticsPage () {
		// Set meta-box context name
		FeedWordPressAdminPage::FeedWordPressAdminPage('feedwordpressdiagnosticspage');
		$this->dispatch = 'feedwordpress_diagnostics';
		$this->filename = __FILE__;
		
		$this->test_html = array();
		add_action('feedwordpress_diagnostics_do_http_test', array($this, 'do_http_test'), 10, 1);
	}
 function FeedWordPressCategoriesPage($link = -1)
 {
     if (is_numeric($link) and -1 == $link) {
         $link = $this->submitted_link();
     }
     FeedWordPressAdminPage::FeedWordPressAdminPage('feedwordpresscategories', $link);
     $this->dispatch = 'feedwordpress_admin_page_categories';
     $this->pagenames = array('default' => 'Categories & Tags', 'settings-update' => 'Syndicated Categories & Tags', 'open-sheet' => 'Categories & Tags');
     $this->filename = __FILE__;
 }
 /**
  * Constructs the Feeds page object
  *
  * @param mixed $link An object of class {@link SyndicatedLink} if created for one feed's settings, NULL if created for global default settings
  */
 function FeedWordPressFeedsPage($link = -1)
 {
     if (is_numeric($link) and -1 == $link) {
         $link = FeedWordPressAdminPage::submitted_link();
     }
     FeedWordPressAdminPage::FeedWordPressAdminPage('feedwordpressfeeds', $link);
     $this->dispatch = get_class($this);
     $this->filename = FWP_FEEDS_PAGE_SLUG;
     $this->updatedPosts = new UpdatedPostsControl($this);
 }
 function FeedWordPressSyndicationPage($filename = NULL)
 {
     FeedWordPressAdminPage::FeedWordPressAdminPage('feedwordpresssyndication', NULL);
     // No over-arching form element
     $this->dispatch = NULL;
     if (is_null($filename)) {
         $this->filename = __FILE__;
     } else {
         $this->filename = $filename;
     }
 }
 /**
  * Construct the posts page object.
  *
  * @param mixed $link An object of class {@link SyndicatedLink} if created for one feed's settings, NULL if created for global default settings
  */
 function FeedWordPressPostsPage($link = -1)
 {
     if (is_numeric($link) and -1 == $link) {
         $link = FeedWordPressAdminPage::submitted_link();
     }
     FeedWordPressAdminPage::FeedWordPressAdminPage('feedwordpresspostspage', $link);
     $this->dispatch = 'feedwordpress_admin_page_posts';
     $this->filename = __FILE__;
     $this->updatedPosts = new UpdatedPostsControl($this);
     $this->pagenames = array('default' => 'Posts', 'settings-update' => 'Syndicated posts', 'open-sheet' => 'Syndicated Posts & Links');
 }
Exemple #13
0
 function FeedWordPressAuthorsPage($link = -1)
 {
     if (is_numeric($link) and -1 == $link) {
         $link = FeedWordPressAdminPage::submitted_link();
     }
     FeedWordPressAdminPage::FeedWordPressAdminPage('feedwordpressauthors', $link);
     $this->refresh_author_list();
     $this->dispatch = 'feedwordpress_author_settings';
     $this->filename = __FILE__;
     $this->pagenames = array('default' => 'Authors', 'settings-update' => 'Syndicated Authors', 'open-sheet' => 'Syndicated Author');
 }
	function FeedWordPressSyndicationPage ($filename = NULL) {
		FeedWordPressAdminPage::FeedWordPressAdminPage('feedwordpresssyndication', /*link=*/ NULL);

		// No over-arching form element
		$this->dispatch = NULL;
		if (is_null($filename)) :
			$this->filename = __FILE__;
		else :
			$this->filename = $filename;
		endif;
	} /* FeedWordPressSyndicationPage constructor */
 /**
  * Constructs the Feeds page object
  *
  * @param mixed $link An object of class {@link SyndicatedLink} if created for one feed's settings, NULL if created for global default settings
  */
 function FeedWordPressFeedsPage($link = -1)
 {
     if (is_numeric($link) and -1 == $link) {
         $link = FeedWordPressAdminPage::submitted_link();
     }
     FeedWordPressAdminPage::FeedWordPressAdminPage('feedwordpressfeeds', $link);
     $this->dispatch = 'feedwordpress_admin_page_feeds';
     $this->pagenames = array('default' => 'Feeds', 'settings-update' => 'Syndicated feed', 'open-sheet' => 'Feed and Update');
     $this->filename = __FILE__;
     $this->updatedPosts = new UpdatedPostsControl($this);
     $this->special_settings = apply_filters('syndicated_feed_special_settings', $this->special_settings, $this);
 }
 function FeedWordPressCategoriesPage($link)
 {
     FeedWordPressAdminPage::FeedWordPressAdminPage('feedwordpresscategories', $link);
     $this->dispatch = 'feedwordpress_categories_settings';
     $this->filename = FWP_CATEGORIES_PAGE_SLUG;
 }