Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8300929
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T16:44:51+00:00 2026-06-08T16:44:51+00:00

I’m trying to setup IF statements within a function to determine if an outside

  • 0

I’m trying to setup IF statements within a function to determine if an outside function is being used. I guess one way my question could go .. how could I set up hook in the outside functions (app1, app2) to build the IF statement off of? Wrap them in a class? If so, how could I construct the statement?

The logic doesn’t really seem to make sense, at least from my level of PHP knowledge. The purpose of this, I’ve got 2 functions (app1 and app2), each creating a different set of options for two separate admin panels. The constructors and markup of the options in each panel is the same, which would be in the “wrapper” function. But currently, having to use two separate “wrapper” functions to handle this. One function for Panel1 and another for Panel2.

So I’ve been tasked with combining the two wrapper functions as it is kind of redundant to have two seperate functions that basically do the same thing. Here’s a summarized bit of the code. As you can see, the only difference in each is the “$panel_type = …” bit

function app1() {
    $app1_options = array();

    $app1_options[] = array(
        'type' => 'text',
        'name' => 'Text Field',
        'id' => 'text_field_one'
    );

    return $app1_options;
}

function app2() {
    $app2_options = array();

    $app2_options[] = array(
        'type' => 'text',
        'name' => 'Text Field',
        'id' => 'text_field'
    );

    return $app2_options;
}

function wrapper_panel1() {
    $panel_type = app1();

    foreach( $panel_type as $value ) {
        switch ( $value[ 'type' ] ) {
            case 'text':
                // input stuff
            break;
        }
    }
}

function wrapper_panel2() {
    $panel_type = app2();

    foreach( $panel_type as $value ) {
        switch ( $value[ 'type' ] ) {
            case 'text':
                // input stuff
            break;
        }
    }
}

So really looking for some kind of way to merge those two functions together, something like:

function wrapper() {
    if ( app1() ) {
        $panel_type = app1();
    }

    if ( app2() ) {
        $panel_type = app2();
    }

    foreach( $panel_type as $value ) {
        switch ( $value[ 'type' ] ) {
            case 'text':
                // input stuff
            break;
        }
    }
}

Could something be done with setting up a class/object on this? Or any type of change that could achieve this.

Really appreciate any help that can be provided on this. Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T16:44:52+00:00Added an answer on June 8, 2026 at 4:44 pm

    Just pass the app id to the wrapper function:

    function wrapper_panel ($appId) {
    
        $optsFunc = 'app'.$appId;
        $panel_type = $optsFunc();
    
        foreach( $panel_type as $value ) {
            switch ( $value[ 'type' ] ) {
                case 'text':
                    // input stuff
                break;
            }
        }
    
    }
    
    // In app1:
    wrapper_panel(1);
    
    // In app2:
    wrapper_panel(2);
    

    …or better, pass the options into the wrapper function when you call it:

    function wrapper_panel ($panel_type) {
    
        foreach( $panel_type as $value ) {
            switch ( $value[ 'type' ] ) {
                case 'text':
                    // input stuff
                break;
            }
        }
    
    }
    
    // In app1
    wrapper_panel(app1());
    
    // In app2
    wrapper_panel(app2());
    

    EDIT

    Given the constraints imposed by WordPress, I think the easiest and least horrible thing to do is to call wrapper_panel() from within the app1() and app2() functions:

    function app1() {
    
        $app1_options = array();
    
        $app1_options[] = array(
            'type' => 'text',
            'name' => 'Text Field',
            'id' => 'text_field_one'
        );
    
        wrapper_panel($app1_options);
    
    }
    function app2() {
    
        $app2_options = array();
    
        $app2_options[] = array(
            'type' => 'text',
            'name' => 'Text Field',
            'id' => 'text_field'
        );
    
        wrapper_panel($app2_options);
    
    }
    
    function wrapper_panel ($panel_type) {
    
        foreach( $panel_type as $value ) {
            switch ( $value[ 'type' ] ) {
                case 'text':
                    // input stuff
                break;
            }
        }
    
    }
    

    …and register the app1 and app2 functions with WordPress, instead of the wrapper_panel function.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I used javascript for loading a picture on my website depending on which small
I am reading a book about Javascript and jQuery and using one of the
I am trying to render a haml file in a javascript response like so:
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I need a function that will clean a strings' special characters. I do NOT

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.