msowah
Forum Replies Created
-
Forum: Plugins
In reply to: [Zephyr Project Manager] Rest API methodsHello,
I think having both is not a bad idea at all.what about the reports api?
Thanks
Forum: Plugins
In reply to: [Zephyr Project Manager] Rest API methodsThank you, Dylan,
Had a little setback with regard to the PayPal payment for the pro version and the bank transfer option’s charges are quite steep from my side.Anyways I noticed there’s no rest API endpoint for activities and reports.
- This reply was modified 2 years, 2 months ago by msowah.
Forum: Plugins
In reply to: [Zephyr Project Manager] Rest API methodsHello just for clarity is it
“using Inc\Api\RestApi;” or rather “use Inc\Api\RestApi;”?Thanks,
Best regards,
MichaelForum: Plugins
In reply to: [Zephyr Project Manager] Rest API methodsHello Dylan,
Thanks a bunch for your response.
And Yes, the plugin PHP classes instead of the REST API calls.Almost all the functions I need are in your zephyr-project-manager/includes/Api/RestApi.php class RestApi
So if I could just include that file and call the functions I need in there, I will be good.
Thank you.
Best regards,
MichaelForum: Plugins
In reply to: [Zephyr Project Manager] Rest API methodsGreat, I’ve seen the updates on the API being GET/POST now.
Can I call some of the functions in your REST API class in my themes function.php not the rest API call but a function in the API class?
if yes am example please…Thank you.
- This reply was modified 2 years, 3 months ago by msowah.
ok, got it now, thanks so much.
So it means these plugins work with only Pods Pro by SKCDEV?
or I can buy the pack and still use with the free versionForum: Plugins
In reply to: [Zephyr Project Manager] Rest api authenticationHello Dylan,
Is there an option to use JWT tokens instead of basic auth because of the security implications of basic auth?or Can I use a third party plugin for that.
Great plugin, by the way, will buy pro soon.
- This reply was modified 2 years, 3 months ago by msowah.
I figured out another way to do it. Thank you so much.
I figured out another way to do it. Thank you so much.
Hello @keraweb even if I remove that the problem still remains which is the relationship field company_sectors.post_title returns only the first object even though there’s more than one object in it.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] pods_callbackThanks for the swift response,e all am trying to find out is after using the normal pods() where or how do I pass the pods_callback in other to get all the fields of the relationship field…I really appreciate a sample…is it passed like the ‘where’ or am I missing something here.
How do I add the pods_callback in the sample below:
// Here's how to use find() $params = array( 'limit' => 3, 'page' => 2, // Be sure to sanitize ANY strings going here 'where'=>"category.name = 'My Category'" ); // Run the find $mypod = pods( 'mypod', $params ); // Loop through the records returned while ( $mypod->fetch() ) { echo $mypod->display( 'name' ) . "\n"; }
- This reply was modified 2 years, 7 months ago by msowah.