10+ results for 'eval $_GET' (0 ms)

Not the results you expected?

class.redux_admin_notices.php (https://gitlab.com/pankajmohale/chef2go) PHP · 189 lines

37

38 /**

39 * adminNotices - Evaluates user dismiss option for displaying admin notices

40 *

41 * @since 3.2.0

76 // Get the current page. To avoid errors, we'll set

77 // the redux page slug if the GET is empty.

78 $pageName = empty( $_GET['page'] ) ? '&page=' . self::$_parent->args['page_slug'] : '&page=' . esc_attr( $_GET['page'] );

79

80 // Ditto for the current tab.

81 $curTab = empty( $_GET['tab'] ) ? '&tab=0' : '&tab=' . esc_attr( $_GET['tab'] );

82 }

83

145

146 // Verify the dismiss and id parameters are present.

147 if ( isset( $_GET['dismiss'] ) && isset( $_GET['id'] ) ) {

148 if ( 'true' == $_GET['dismiss'] || 'false' == $_GET['dismiss'] ) {

article.app.php (https://github.com/bluelovers/ECMall.git) PHP · 230 lines

28 $cate_id = !empty($_GET['cate_id'])? intval($_GET['cate_id']) : $this->_ACC[ACC_NOTICE]; //如果cate_id为空则默认显示商城快讯

29 isset($_GET['code']) && isset($this->_ACC[trim($_GET['code'])]) && $cate_id = $this->_ACC[trim($_GET['code'])]; //如果有code

30 /* 取得当前分类及子孙分类cate_id */

31 $cate_ids = array();

73 function view()

74 {

75 $article_id = empty($_GET['article_id']) ? 0 : intval($_GET['article_id']);

76 $cate_ids = array();

77 if ($article_id>0)

133 function system()

134 {

135 $code = empty($_GET['code']) ? '' : trim($_GET['code']);

136 if (!$code)

137 {

settings.php (https://gitlab.com/gregtyka/lfmawordpress) PHP · 110 lines

19

20

21 $current_tab = isset( $_GET['tab'] ) ? $_GET['tab'] : '';

22

23 $tabs = learn_press_settings_tabs_array();

31 flush_rewrite_rules();

32

33 if ( !empty( $_GET['settings-updated'] ) ) : ?>

34 <div id="message" class="updated notice is-dismissible">

35 <p><?php _e( 'LearnPress settings updated.', 'learnpress' ); ?></p>

69

70 $tabs = learn_press_settings_tabs_array();

71 $current_tab = isset( $_GET['tab'] ) ? $_GET['tab'] : '';

72

73 if ( !$current_tab && $tabs ) {

warn.php (https://github.com/ramielrowe/Radford-Reservation-System.git) PHP · 136 lines

3 if($pageid == "warnuser"){

4

5 $user = mysql_fetch_assoc(getUserByID($_GET['user_id']));

6

7 echo "

10

11 <form action=\"./index.php?pageid=submitwarning\" method=\"POST\">

12 <input type=\"hidden\" name=\"user_id\" value=\"".$_GET['user_id']."\">

13 <table class=\"warning\">

14

49 else if($pageid == "viewwarnings"){

50

51 if(getSessionVariable('user_level') < getConfigVar("admin_rank") && getSessionVariable('user_id') != $_GET['user_id']){

52

53 echo "<center><h3><font color=\"#FF0000\">Error: You are not authorized to view other user's warnings.</font></h3></center>";

zfs_get_009_pos.ksh (https://github.com/adilger/zfs.git) Korn Shell · 112 lines

86 done

87 for prop in $(gen_option_str "${all_props[*]}" "" "," $prop_numb); do

88 log_must eval "zfs get -H -d $dp -o name $prop $DEPTH_FS > $DEPTH_OUTPUT"

89 log_must eval "zfs get -rH -o name $prop $DEPTH_FS | egrep -e '$eg_opt' > $EXPECT_OUTPUT"

94

95 # Ensure 'zfs get -t snapshot <dataset>' works as though -d 1 was specified

96 log_must eval "zfs get -H -t snapshot -o name creation $DEPTH_FS > $DEPTH_OUTPUT"

97 log_must eval "zfs get -H -t snapshot -d 1 -o name creation $DEPTH_FS > $EXPECT_OUTPUT"

99

100 # Ensure 'zfs get -t snap' works as a shorthand for 'zfs get -t snapshot'

101 log_must eval "zfs get -H -t snap -d 1 -o name creation $DEPTH_FS > $DEPTH_OUTPUT"

102 log_must eval "zfs get -H -t snapshot -d 1 -o name creation $DEPTH_FS > $EXPECT_OUTPUT"

104

105 # Ensure 'zfs get -t bookmark <dataset>' works as though -d 1 was specified

106 log_must eval "zfs get -H -t bookmark -o name creation $DEPTH_FS > $DEPTH_OUTPUT"

107 log_must eval "zfs get -H -t bookmark -d 1 -o name creation $DEPTH_FS > $EXPECT_OUTPUT"

RPCdummy.php (https://github.com/bdumitriu/playground.git) PHP · 125 lines

20 require "Include/Functions.php";

21

22 $mode = $_GET['mode'];

23 $data = FilterInput($_GET['data'],'int');

view.php (https://github.com/md-tech/openemr.git) PHP · 1083 lines

26 include_once("$srcdir/api.inc");

27

28 $obj = formFetch("form_progressnotes", $_GET["id"]);

29

30 ?>

31

32 <form method=post action="<?php echo $rootdir?>/forms/progressnotes/save.php?mode=update&id=<?php echo $_GET["id"];?>" name="my_form">

33

34 <span class="title">Progress Notes</span><Br><br>

Chrom.hs (https://bitbucket.org/patyoon/haskell-genetic-algorithm.git) Haskell · 312 lines

89 -- | QuickCheck property for crossover

90 prop_xoverGetOne :: PropertyM IO ()

91 prop_xoverGetOne = run (evalRandIO $ twoTupleM genRandom >>= makeTuple)

92 >>= assert . check

93 where check :: (Chrom, Chrom, Chrom) -> Bool

113 -- | QuickCheck property for xoverChTwo

114 prop_xoverGetTwo :: PropertyM IO ()

115 prop_xoverGetTwo = run (evalRandIO $ twoTupleM genRandom >>= makeTuple)

116 >>= assert . check

117 where check :: (Chrom, Chrom, (Chrom, Chrom)) -> Bool

160 -- | QuickCheck property for xoverChTwo

161 prop_xoverTwoPivot :: PropertyM IO ()

162 prop_xoverTwoPivot = run (evalRandIO $ twoTupleM genRandom >>= makeTuple)

163 >>= assert . check

164 where check :: (Chrom, Chrom, (Chrom, Chrom)) -> Bool

el-070722-index-2.php (https://bitbucket.org/shuangxinyu/emacspack.git) PHP · 49 lines

18 <div id="main">

19 <?php

20 if (isset($_GET["page"])) {

21 $thepage = $_GET['page'];

gnome-gettext.m4 (https://freespeech.svn.sourceforge.net/svnroot/freespeech) m4 · 337 lines ✨ Summary

This M4 code is a part of the GNU gettext package, which provides internationalization and localization support for software. It generates configuration files for building and installing gettext packages, including setting up locale directories, determining catalog formats, and creating lists of files to be processed by xgettext. The output is used to configure the build process for gettext packages.

18 AC_ARG_ENABLE(nls,

19 [ --disable-nls do not use Native Language Support],

20 USE_NLS=$enableval, USE_NLS=yes)

21 AC_MSG_RESULT($USE_NLS)

22 AC_SUBST(USE_NLS)