@@ -26,9 +26,9 @@ |
||
| 26 | 26 | class BitrixInstaller extends BaseInstaller |
| 27 | 27 | { |
| 28 | 28 | protected $locations = array( |
| 29 | - 'module' => '{$bitrix_dir}/modules/{$name}/', // deprecated, remove on the major release (Backward compatibility will be broken) |
|
| 29 | + 'module' => '{$bitrix_dir}/modules/{$name}/', // deprecated, remove on the major release (Backward compatibility will be broken) |
|
| 30 | 30 | 'component' => '{$bitrix_dir}/components/{$name}/', // deprecated, remove on the major release (Backward compatibility will be broken) |
| 31 | - 'theme' => '{$bitrix_dir}/templates/{$name}/', // deprecated, remove on the major release (Backward compatibility will be broken) |
|
| 31 | + 'theme' => '{$bitrix_dir}/templates/{$name}/', // deprecated, remove on the major release (Backward compatibility will be broken) |
|
| 32 | 32 | 'd7-module' => '{$bitrix_dir}/modules/{$vendor}.{$name}/', |
| 33 | 33 | 'd7-component' => '{$bitrix_dir}/components/{$vendor}/{$name}/', |
| 34 | 34 | 'd7-template' => '{$bitrix_dir}/templates/{$vendor}_{$name}/', |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | */ |
| 18 | 18 | public function inflectPackageVars($vars) |
| 19 | 19 | { |
| 20 | - $vars['name'] = preg_replace_callback('/(-[a-z])/', function ($matches) { |
|
| 20 | + $vars['name'] = preg_replace_callback('/(-[a-z])/', function($matches) { |
|
| 21 | 21 | return strtoupper($matches[0][1]); |
| 22 | 22 | }, $vars['name']); |
| 23 | 23 | |
@@ -35,11 +35,11 @@ discard block |
||
| 35 | 35 | */ |
| 36 | 36 | protected function inflectModuleVars($vars) |
| 37 | 37 | { |
| 38 | - $vars['name'] = str_replace('pxcms-', '', $vars['name']); // strip out pxcms- just incase (legacy) |
|
| 39 | - $vars['name'] = str_replace('module-', '', $vars['name']); // strip out module- |
|
| 40 | - $vars['name'] = preg_replace('/-module$/', '', $vars['name']); // strip out -module |
|
| 41 | - $vars['name'] = str_replace('-', '_', $vars['name']); // make -'s be _'s |
|
| 42 | - $vars['name'] = ucwords($vars['name']); // make module name camelcased |
|
| 38 | + $vars['name'] = str_replace('pxcms-', '', $vars['name']); // strip out pxcms- just incase (legacy) |
|
| 39 | + $vars['name'] = str_replace('module-', '', $vars['name']); // strip out module- |
|
| 40 | + $vars['name'] = preg_replace('/-module$/', '', $vars['name']); // strip out -module |
|
| 41 | + $vars['name'] = str_replace('-', '_', $vars['name']); // make -'s be _'s |
|
| 42 | + $vars['name'] = ucwords($vars['name']); // make module name camelcased |
|
| 43 | 43 | |
| 44 | 44 | return $vars; |
| 45 | 45 | } |
@@ -52,11 +52,11 @@ discard block |
||
| 52 | 52 | */ |
| 53 | 53 | protected function inflectThemeVars($vars) |
| 54 | 54 | { |
| 55 | - $vars['name'] = str_replace('pxcms-', '', $vars['name']); // strip out pxcms- just incase (legacy) |
|
| 56 | - $vars['name'] = str_replace('theme-', '', $vars['name']); // strip out theme- |
|
| 57 | - $vars['name'] = preg_replace('/-theme$/', '', $vars['name']); // strip out -theme |
|
| 58 | - $vars['name'] = str_replace('-', '_', $vars['name']); // make -'s be _'s |
|
| 59 | - $vars['name'] = ucwords($vars['name']); // make module name camelcased |
|
| 55 | + $vars['name'] = str_replace('pxcms-', '', $vars['name']); // strip out pxcms- just incase (legacy) |
|
| 56 | + $vars['name'] = str_replace('theme-', '', $vars['name']); // strip out theme- |
|
| 57 | + $vars['name'] = preg_replace('/-theme$/', '', $vars['name']); // strip out -theme |
|
| 58 | + $vars['name'] = str_replace('-', '_', $vars['name']); // make -'s be _'s |
|
| 59 | + $vars['name'] = ucwords($vars['name']); // make module name camelcased |
|
| 60 | 60 | |
| 61 | 61 | return $vars; |
| 62 | 62 | } |
@@ -37,7 +37,7 @@ |
||
| 37 | 37 | */ |
| 38 | 38 | private function correctPluginName($vars) |
| 39 | 39 | { |
| 40 | - $camelCasedName = preg_replace_callback('/(-[a-z])/', function ($matches) { |
|
| 40 | + $camelCasedName = preg_replace_callback('/(-[a-z])/', function($matches) { |
|
| 41 | 41 | return strtoupper($matches[0][1]); |
| 42 | 42 | }, $vars['name']); |
| 43 | 43 | |
@@ -6,8 +6,8 @@ |
||
| 6 | 6 | } |
| 7 | 7 | } |
| 8 | 8 | if ((!$loader = includeIfExists(__DIR__ . '/../vendor/autoload.php')) && (!$loader = includeIfExists(__DIR__ . '/../../../autoload.php'))) { |
| 9 | - die('You must set up the project dependencies, run the following commands:'.PHP_EOL. |
|
| 10 | - 'curl -s http://getcomposer.org/installer | php'.PHP_EOL. |
|
| 11 | - 'php composer.phar install'.PHP_EOL); |
|
| 9 | + die('You must set up the project dependencies, run the following commands:' . PHP_EOL . |
|
| 10 | + 'curl -s http://getcomposer.org/installer | php' . PHP_EOL . |
|
| 11 | + 'php composer.phar install' . PHP_EOL); |
|
| 12 | 12 | } |
| 13 | 13 | return $loader; |
@@ -7,15 +7,15 @@ discard block |
||
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | 9 | // MUST have WordPress. |
| 10 | -if ( !defined( 'WPINC' ) ) { |
|
| 11 | - exit( 'Do NOT access this file directly: ' . basename( __FILE__ ) ); |
|
| 10 | +if (!defined('WPINC')) { |
|
| 11 | + exit('Do NOT access this file directly: ' . basename(__FILE__)); |
|
| 12 | 12 | } |
| 13 | 13 | |
| 14 | 14 | class WPInv_Admin_Users { |
| 15 | 15 | private static $instance; |
| 16 | 16 | |
| 17 | 17 | public static function run() { |
| 18 | - if ( !isset( self::$instance ) && !( self::$instance instanceof WPInv_Admin_Users ) ) { |
|
| 18 | + if (!isset(self::$instance) && !(self::$instance instanceof WPInv_Admin_Users)) { |
|
| 19 | 19 | self::$instance = new WPInv_Admin_Users; |
| 20 | 20 | } |
| 21 | 21 | |
@@ -23,8 +23,8 @@ discard block |
||
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | public function __construct() { |
| 26 | - add_filter( 'manage_users_columns', array( $this, 'wpinv_add_user_column') ); |
|
| 27 | - add_filter( 'manage_users_custom_column', array( $this, 'wpinv_user_column_content') , 10, 3 ); |
|
| 26 | + add_filter('manage_users_columns', array($this, 'wpinv_add_user_column')); |
|
| 27 | + add_filter('manage_users_custom_column', array($this, 'wpinv_user_column_content'), 10, 3); |
|
| 28 | 28 | } |
| 29 | 29 | |
| 30 | 30 | /** |
@@ -34,8 +34,8 @@ discard block |
||
| 34 | 34 | * |
| 35 | 35 | * @return mixed |
| 36 | 36 | */ |
| 37 | - public function wpinv_add_user_column( $column ) { |
|
| 38 | - $column['wpinvoicing'] = __('Invoicing','invoicing'); |
|
| 37 | + public function wpinv_add_user_column($column) { |
|
| 38 | + $column['wpinvoicing'] = __('Invoicing', 'invoicing'); |
|
| 39 | 39 | return $column; |
| 40 | 40 | } |
| 41 | 41 | |
@@ -48,10 +48,10 @@ discard block |
||
| 48 | 48 | * |
| 49 | 49 | * @return string |
| 50 | 50 | */ |
| 51 | - function wpinv_user_column_content( $val, $column_name, $user_id ) { |
|
| 51 | + function wpinv_user_column_content($val, $column_name, $user_id) { |
|
| 52 | 52 | switch ($column_name) { |
| 53 | 53 | case 'wpinvoicing' : |
| 54 | - return $this->get_user_invoices( $user_id ); |
|
| 54 | + return $this->get_user_invoices($user_id); |
|
| 55 | 55 | break; |
| 56 | 56 | default: |
| 57 | 57 | } |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | * |
| 66 | 66 | * @return string |
| 67 | 67 | */ |
| 68 | - public function get_user_invoices($user_id){ |
|
| 68 | + public function get_user_invoices($user_id) { |
|
| 69 | 69 | $output = ''; |
| 70 | 70 | $wp_query_args = array( |
| 71 | 71 | 'post_type' => 'wpi_invoice', |
@@ -77,14 +77,14 @@ discard block |
||
| 77 | 77 | |
| 78 | 78 | $wp_query_args = apply_filters('wpinv_get_user_invoices_args', $wp_query_args, $user_id); |
| 79 | 79 | |
| 80 | - $invoices = new WP_Query( $wp_query_args ); |
|
| 81 | - $count = absint( $invoices->found_posts ); |
|
| 80 | + $invoices = new WP_Query($wp_query_args); |
|
| 81 | + $count = absint($invoices->found_posts); |
|
| 82 | 82 | |
| 83 | - if(empty($count)){ |
|
| 84 | - $output .= __('No Invoice(s)','invoicing'); |
|
| 85 | - }else{ |
|
| 86 | - $link_url = admin_url( "edit.php?post_type=wpi_invoice&author=".absint($user_id) ); |
|
| 87 | - $link_text = sprintf( __('Invoices ( %d )', 'invoicing'), $count ); |
|
| 83 | + if (empty($count)) { |
|
| 84 | + $output .= __('No Invoice(s)', 'invoicing'); |
|
| 85 | + } else { |
|
| 86 | + $link_url = admin_url("edit.php?post_type=wpi_invoice&author=" . absint($user_id)); |
|
| 87 | + $link_text = sprintf(__('Invoices ( %d )', 'invoicing'), $count); |
|
| 88 | 88 | $output .= "<a href='$link_url' >$link_text</a>"; |
| 89 | 89 | } |
| 90 | 90 | |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | // Exit if accessed directly |
| 3 | -if ( ! defined( 'ABSPATH' ) ) exit; |
|
| 4 | -if(!class_exists('Ayecode_Addons')) { |
|
| 3 | +if (!defined('ABSPATH')) exit; |
|
| 4 | +if (!class_exists('Ayecode_Addons')) { |
|
| 5 | 5 | |
| 6 | 6 | abstract class Ayecode_Addons |
| 7 | 7 | { |
@@ -3,7 +3,7 @@ discard block |
||
| 3 | 3 | * Abstract privacy class. |
| 4 | 4 | */ |
| 5 | 5 | |
| 6 | -defined( 'ABSPATH' ) || exit; |
|
| 6 | +defined('ABSPATH') || exit; |
|
| 7 | 7 | |
| 8 | 8 | /** |
| 9 | 9 | * Abstract class that is intended to be extended by |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | * |
| 39 | 39 | * @param string $name Plugin identifier. |
| 40 | 40 | */ |
| 41 | - public function __construct( $name = '' ) { |
|
| 41 | + public function __construct($name = '') { |
|
| 42 | 42 | $this->name = $name; |
| 43 | 43 | $this->init(); |
| 44 | 44 | } |
@@ -47,22 +47,22 @@ discard block |
||
| 47 | 47 | * Hook in events. |
| 48 | 48 | */ |
| 49 | 49 | protected function init() { |
| 50 | - add_action( 'admin_init', array( $this, 'add_privacy_message' ) ); |
|
| 50 | + add_action('admin_init', array($this, 'add_privacy_message')); |
|
| 51 | 51 | // Register data exporters |
| 52 | - add_filter( 'wp_privacy_personal_data_exporters', array( $this, 'register_exporters' ), 10 ); |
|
| 52 | + add_filter('wp_privacy_personal_data_exporters', array($this, 'register_exporters'), 10); |
|
| 53 | 53 | // Register data erasers |
| 54 | - add_filter( 'wp_privacy_personal_data_erasers', array( $this, 'register_erasers' ) ); |
|
| 54 | + add_filter('wp_privacy_personal_data_erasers', array($this, 'register_erasers')); |
|
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | /** |
| 58 | 58 | * Adds the privacy message on invoicing privacy page. |
| 59 | 59 | */ |
| 60 | 60 | public function add_privacy_message() { |
| 61 | - if ( function_exists( 'wp_add_privacy_policy_content' ) ) { |
|
| 61 | + if (function_exists('wp_add_privacy_policy_content')) { |
|
| 62 | 62 | $content = $this->get_privacy_message(); |
| 63 | 63 | |
| 64 | - if ( $content ) { |
|
| 65 | - wp_add_privacy_policy_content( $this->name, $this->get_privacy_message() ); |
|
| 64 | + if ($content) { |
|
| 65 | + wp_add_privacy_policy_content($this->name, $this->get_privacy_message()); |
|
| 66 | 66 | } |
| 67 | 67 | } |
| 68 | 68 | } |
@@ -83,9 +83,9 @@ discard block |
||
| 83 | 83 | * @param array $exporters List of exporter callbacks. |
| 84 | 84 | * @return array |
| 85 | 85 | */ |
| 86 | - public function register_exporters( $exporters = array() ) { |
|
| 87 | - foreach ( $this->exporters as $id => $exporter ) { |
|
| 88 | - $exporters[ $id ] = $exporter; |
|
| 86 | + public function register_exporters($exporters = array()) { |
|
| 87 | + foreach ($this->exporters as $id => $exporter) { |
|
| 88 | + $exporters[$id] = $exporter; |
|
| 89 | 89 | } |
| 90 | 90 | return $exporters; |
| 91 | 91 | } |
@@ -96,9 +96,9 @@ discard block |
||
| 96 | 96 | * @param array $erasers List of eraser callbacks. |
| 97 | 97 | * @return array |
| 98 | 98 | */ |
| 99 | - public function register_erasers( $erasers = array() ) { |
|
| 100 | - foreach ( $this->erasers as $id => $eraser ) { |
|
| 101 | - $erasers[ $id ] = $eraser; |
|
| 99 | + public function register_erasers($erasers = array()) { |
|
| 100 | + foreach ($this->erasers as $id => $eraser) { |
|
| 101 | + $erasers[$id] = $eraser; |
|
| 102 | 102 | } |
| 103 | 103 | return $erasers; |
| 104 | 104 | } |
@@ -112,8 +112,8 @@ discard block |
||
| 112 | 112 | * |
| 113 | 113 | * @return array |
| 114 | 114 | */ |
| 115 | - public function add_exporter( $id, $name, $callback ) { |
|
| 116 | - $this->exporters[ $id ] = array( |
|
| 115 | + public function add_exporter($id, $name, $callback) { |
|
| 116 | + $this->exporters[$id] = array( |
|
| 117 | 117 | 'exporter_friendly_name' => $name, |
| 118 | 118 | 'callback' => $callback, |
| 119 | 119 | ); |
@@ -129,8 +129,8 @@ discard block |
||
| 129 | 129 | * |
| 130 | 130 | * @return array |
| 131 | 131 | */ |
| 132 | - public function add_eraser( $id, $name, $callback ) { |
|
| 133 | - $this->erasers[ $id ] = array( |
|
| 132 | + public function add_eraser($id, $name, $callback) { |
|
| 133 | + $this->erasers[$id] = array( |
|
| 134 | 134 | 'eraser_friendly_name' => $name, |
| 135 | 135 | 'callback' => $callback, |
| 136 | 136 | ); |
@@ -3,7 +3,7 @@ discard block |
||
| 3 | 3 | * Handle data for the current customer session |
| 4 | 4 | */ |
| 5 | 5 | |
| 6 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 6 | +if (!defined('ABSPATH')) { |
|
| 7 | 7 | exit; |
| 8 | 8 | } |
| 9 | 9 | |
@@ -51,8 +51,8 @@ discard block |
||
| 51 | 51 | * @param mixed $key Key to get. |
| 52 | 52 | * @return mixed |
| 53 | 53 | */ |
| 54 | - public function __get( $key ) { |
|
| 55 | - return $this->get( $key ); |
|
| 54 | + public function __get($key) { |
|
| 55 | + return $this->get($key); |
|
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | /** |
@@ -61,8 +61,8 @@ discard block |
||
| 61 | 61 | * @param mixed $key Key to set. |
| 62 | 62 | * @param mixed $value Value to set. |
| 63 | 63 | */ |
| 64 | - public function __set( $key, $value ) { |
|
| 65 | - $this->set( $key, $value ); |
|
| 64 | + public function __set($key, $value) { |
|
| 65 | + $this->set($key, $value); |
|
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | /** |
@@ -71,8 +71,8 @@ discard block |
||
| 71 | 71 | * @param mixed $key Key to check. |
| 72 | 72 | * @return bool |
| 73 | 73 | */ |
| 74 | - public function __isset( $key ) { |
|
| 75 | - return isset( $this->_data[ sanitize_title( $key ) ] ); |
|
| 74 | + public function __isset($key) { |
|
| 75 | + return isset($this->_data[sanitize_title($key)]); |
|
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | /** |
@@ -80,9 +80,9 @@ discard block |
||
| 80 | 80 | * |
| 81 | 81 | * @param mixed $key Key to unset. |
| 82 | 82 | */ |
| 83 | - public function __unset( $key ) { |
|
| 84 | - if ( isset( $this->_data[ $key ] ) ) { |
|
| 85 | - unset( $this->_data[ $key ] ); |
|
| 83 | + public function __unset($key) { |
|
| 84 | + if (isset($this->_data[$key])) { |
|
| 85 | + unset($this->_data[$key]); |
|
| 86 | 86 | $this->_dirty = true; |
| 87 | 87 | } |
| 88 | 88 | } |
@@ -94,9 +94,9 @@ discard block |
||
| 94 | 94 | * @param mixed $default used if the session variable isn't set. |
| 95 | 95 | * @return array|string value of session variable |
| 96 | 96 | */ |
| 97 | - public function get( $key, $default = null ) { |
|
| 98 | - $key = sanitize_key( $key ); |
|
| 99 | - return isset( $this->_data[ $key ] ) ? maybe_unserialize( $this->_data[ $key ] ) : $default; |
|
| 97 | + public function get($key, $default = null) { |
|
| 98 | + $key = sanitize_key($key); |
|
| 99 | + return isset($this->_data[$key]) ? maybe_unserialize($this->_data[$key]) : $default; |
|
| 100 | 100 | } |
| 101 | 101 | |
| 102 | 102 | /** |
@@ -105,9 +105,9 @@ discard block |
||
| 105 | 105 | * @param string $key Key to set. |
| 106 | 106 | * @param mixed $value Value to set. |
| 107 | 107 | */ |
| 108 | - public function set( $key, $value ) { |
|
| 109 | - if ( $value !== $this->get( $key ) ) { |
|
| 110 | - $this->_data[ sanitize_key( $key ) ] = maybe_serialize( $value ); |
|
| 108 | + public function set($key, $value) { |
|
| 109 | + if ($value !== $this->get($key)) { |
|
| 110 | + $this->_data[sanitize_key($key)] = maybe_serialize($value); |
|
| 111 | 111 | $this->_dirty = true; |
| 112 | 112 | } |
| 113 | 113 | } |