Lines Matching refs:ctx
17 $ctx = new context;
18 $ctx->comment_preview = array();
19 $ctx->comment_preview[0] = 1;
20 $ctx->comment_preview[1] = 2;
21 var_dump($ctx->comment_preview);
26 $ctx->comment_preview = $comment_preview;
27 var_dump($ctx->comment_preview);
29 $ctx->comment_preview = new ArrayObject();
30 $ctx->comment_preview[0] = 1;
31 $ctx->comment_preview[1] = 2;
32 var_dump($ctx->comment_preview);