Gary Jones

Results 475 comments of Gary Jones

Still reproducible in `2.7.7-a.1`: Add New CPT. Singular `Författare`, Plural `Författare`, and get the following: ![screenshot 2018-06-10 19 56 01](https://user-images.githubusercontent.com/88371/41205272-5382a374-6ce8-11e8-8bf9-84baef3759e7.png) The underlying PHP is provided at https://github.com/pods-framework/pods/blob/deec11524b44c2efe37533b8d97a96a106fb2354/classes/PodsAdmin.php#L1180 though this adds,...

Replacing the line with: ```js slug = $( '' + slug + '' ).text(); ``` Results in the following: ![screenshot 2018-06-10 21 39 34](https://user-images.githubusercontent.com/88371/41206107-c990d550-6cf6-11e8-8f60-faed843192a9.png) The empty `hr` element is removed,...

_Some time later..._ @carherbl Was this issue fixed in the recent versions of Pods? If not could you please do an Export from Components: Migrate Packages with the minimum data...

I don't think even the `IntlDateFormatter` accepts non-Latin _input_, which is what's required here. I did find http://www.ar-php.org/, and [one of the pages](http://www.ar-php.org/features-php-arabic.html) is to [parse Arabic strings into DateTime](http://www.ar-php.org/I18N/Arabic/Examples/StrToTime.php)...

Currently [1163 lines long](https://github.com/pods-framework/pods/blob/54f11e6c521dc4c0f5edfca218b03a47a7b56b2b/classes/Pods.php#L777-L1939)!

@yygxlin My understanding is you'd want: ```sh phpbrew switch php-7.1.3 ``` The `switch` command takes the _name_ of the install, rather than just the number. Run `phpbrew list` to see...

> Did I understand correctly that you are looking for a way to add issues to a project board when they are added to a milestone? That is correct. >...

I've not looked at the logic, but could `milestoned_issue` be re-used? i.e. if the board doesn't yet exist on a board, then add it and "move" it to the correct...

My use case (which I've not figured out yet): The `generate:client` gives me the following: ```php public function demoSetup(\GAA\CorpManagerApi\SoapTypes\DemoSetup $DemoSetup) : \GAA\CorpManagerApi\SoapTypes\DemoSetupResponse { return $this->call('DemoSetup', $DemoSetup); } public function demoSetupGain(\GAA\CorpManagerApi\SoapTypes\DemoSetupGain...

Here's what I've got which I think is working: ## Config: ```php ->addRule(new ClientMethodMatchesRule( new AssembleRule(new ConsolidatedClientMethodAssembler()), '/^(demoSetup|thirdPartySubscribe)$/' )) ->addRule(new ClientMethodMatchesRule( new AssembleRule(new RemovedClientMethodAssembler()), '/^(demoSetupGain|thirdPartySubscribeGain)$/' )) ``` ---- ## `ClientMethodMatchesRule`...